Skip to content

Commit

Permalink
More CLI Bootstrap fixes for macOS (#152)
Browse files Browse the repository at this point in the history
* remove sudo from minikube start, only needed when vmdriver is none:

* test

* test

* publish cli version 0.2.4

* clean up w8

* attempt to fix path error for bash scripts

* test debug command

* more cleanup

* published [email protected]

* implement feedback

* update readme
  • Loading branch information
Orie Steele authored and eolszewski committed Jun 26, 2018
1 parent 5726b89 commit 2ff4ba2
Show file tree
Hide file tree
Showing 14 changed files with 124 additions and 148 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ before_script:
- cd $TRAVIS_BUILD_DIR
- transmute k8s provision-minikube travis_test_cluster --vmdriver none
- transmute k8s init travis_test_cluster
# TODO: These commands should be moved to the cli
- kubectl get pods --all-namespaces
- kubectl get svc --all-namespaces
- kubectl describe pod $(kubectl get pod --all-namespaces|grep gateway-kong-migrations|awk '{print $2}')
- kubectl describe pod $(kubectl get pod --all-namespaces|grep -v gateway-kong-migrations|grep gateway-kong|awk '{print $2}')
- transmute debug

script:
- lerna bootstrap
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ Setup

First step is to install the development dependencies. Review this bootstrap script before running it:

```
curl -Ls https://git.io/transmute_bootstrap > transmute_bootstrap
chmod +x transmute_bootstrap
./transmute_bootstrap
# cleanup
rm -rf ./transmute_bootstrap
```

Or if you like to live dangerously...

```
source <(curl -Ls https://git.io/transmute_bootstrap)
```
Expand Down
Loading

0 comments on commit 2ff4ba2

Please sign in to comment.