Skip to content

Commit

Permalink
Fix version in download.sh (#257)
Browse files Browse the repository at this point in the history
* We want to use KUBEFLOW_TAG in the URL so we use the download.sh script
  on the release branch.
  • Loading branch information
jlewi authored and k8s-ci-robot committed Oct 11, 2018
1 parent f71ab49 commit 4ed42eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 4ed42eb

Please sign in to comment.