Skip to content

Commit

Permalink
Change deploy.sh for Minikube example (#252)
Browse files Browse the repository at this point in the history
* Change deploy for Minikube Example

* Change namespace to kubeflow in Minikube example

* Delete lines about modeldb from deploy
  • Loading branch information
andreyvelich authored and k8s-ci-robot committed Nov 20, 2018
1 parent 206bcaa commit 597064a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/MinikubeDemo.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You can deploy katib components and try a simple mnist demo on your laptop!
Start Katib on Minikube with [deploy.sh](./MinikubeDemo/deploy.sh).
A Minikube cluster and Katib components will be deployed!

You can check them with `kubectl -n katib get pods`.
You can check them with `kubectl -n kubeflow get pods`.
Don't worry if the `vizier-core` get an error.
It will be recovered after DB will be prepared.
Wait until all components will be Running status.
Expand Down
4 changes: 1 addition & 3 deletions examples/MinikubeDemo/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ set -e
minikube start --disk-size 50g --memory 4096 --cpus 4
kubectl apply -f ../../manifests/0-namespace.yaml
kubectl apply -f ../../manifests/pv
kubectl apply -f ../../manifests/modeldb/db
kubectl apply -f ../../manifests/modeldb/backend
kubectl apply -f ../../manifests/modeldb/frontend
kubectl apply -f ../../manifests/vizier/db
kubectl apply -f ../../manifests/vizier/core
kubectl apply -f ../../manifests/vizier/ui
kubectl apply -f ../../manifests/vizier/suggestion/random
kubectl apply -f ../../manifests/vizier/suggestion/grid
kubectl apply -f ../../manifests/vizier/suggestion/hyperband
Expand Down

0 comments on commit 597064a

Please sign in to comment.