Last active
May 21, 2018 13:33
-
-
Save sanketsudake/656d3807c9e803c294186c9502503684 to your computer and use it in GitHub Desktop.
Get Kubeflow Running for Myself
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NAMESPACE=kubeflow | |
kubectl create namespace ${NAMESPACE} | |
VERSION=v0.1.2 | |
APP_NAME=my-kubeflow | |
ks init ${APP_NAME} | |
cd ${APP_NAME} | |
ks env set default --namespace ${NAMESPACE} | |
ks registry add kubeflow github.com/kubeflow/kubeflow/tree/${VERSION}/kubeflow | |
ks pkg install kubeflow/core@${VERSION} | |
ks pkg install kubeflow/tf-serving@${VERSION} | |
ks pkg install kubeflow/tf-job@${VERSION} | |
ks generate kubeflow-core kubeflow-core | |
kubectl create clusterrolebinding default-admin --clusterrole=cluster-admin [email protected] | |
ks apply default -c kubeflow-core | |
ks param set kubeflow-core jupyterHubServiceType LoadBalancer | |
ks apply default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment