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

Fix version in download.sh #257

Merged
merged 1 commit into from
Oct 11, 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 content/docs/started/getting-started-gke.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Run the following steps to deploy Kubeflow:
mkdir ${KUBEFLOW_SRC}
cd ${KUBEFLOW_SRC}
export KUBEFLOW_TAG={{% kf-stable-tag %}}
curl https://raw.githubusercontent.com/kubeflow/kubeflow/{{< params "githubbranch" >}}/scripts/download.sh | bash
curl https://raw.githubusercontent.com/kubeflow/kubeflow/${KUBEFLOW_TAG}/scripts/download.sh | bash
```
* **KUBEFLOW_SRC** directory where you want to download the source to
* **KUBEFLOW_TAG** a tag corresponding to the version to checkout such as `master` for latest code.
Expand Down
2 changes: 1 addition & 1 deletion content/docs/started/getting-started-minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ The following steps will deploy Kubeflow components and start them on the Miniku
mkdir ${KUBEFLOW_SRC}
cd ${KUBEFLOW_SRC}
export KUBEFLOW_TAG=v0.3.0
curl https://raw.githubusercontent.com/kubeflow/kubeflow/${KUBEFLOW_VERSION}/scripts/download.sh | bash
curl https://raw.githubusercontent.com/kubeflow/kubeflow/${KUBEFLOW_TAG}/scripts/download.sh | bash
```
- **KUBEFLOW_SRC** is the directory where you want to download the source
- **KUBEFLOW_TAG** is a tag corresponding to the version to checkout such as `v0.3.0`
Expand Down