Skip to content

Commit

Permalink
Update the docs to pin the version to a particular release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewi committed Mar 28, 2018
1 parent 56335d5 commit 97fa30a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,20 @@ In order to quickly set up all components, execute the following commands:
NAMESPACE=kubeflow
kubectl create namespace ${NAMESPACE}
# Which version of Kubeflow to use
# For a list of releases see:
# https://github.com/kubeflow/kubeflow/releases
VERSION=v0.1.0-rc.0
# Initialize a ksonnet app. Set the namespace for it's default environment.
APP_NAME=my-kubeflow
ks init ${APP_NAME}
cd ${APP_NAME}
ks env set default --namespace ${NAMESPACE}
# Install Kubeflow components
ks registry add kubeflow github.com/kubeflow/kubeflow/tree/master/kubeflow
ks registry add kubeflow github.com/kubeflow/kubeflow/tree/${VERSION}/kubeflow
ks pkg install kubeflow/core
ks pkg install kubeflow/tf-serving
ks pkg install kubeflow/tf-job
Expand Down
6 changes: 5 additions & 1 deletion user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ ks init my-kubeflow
Install the Kubeflow packages into your application.

```
# For a list of releases see:
# https://github.com/kubeflow/kubeflow/releases
VERSION=v0.1.0-rc.0
cd my-kubeflow
ks registry add kubeflow github.com/kubeflow/kubeflow/tree/master/kubeflow
ks registry add kubeflow github.com/kubeflow/kubeflow/tree/${VERSION}/kubeflow
ks pkg install kubeflow/core
ks pkg install kubeflow/tf-serving
ks pkg install kubeflow/tf-job
Expand Down

0 comments on commit 97fa30a

Please sign in to comment.