Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change deploy.sh for Minikube example #252

Merged
merged 3 commits into from
Nov 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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