diff --git a/website/config.toml b/website/config.toml index 8d24318db7..7a4e8b47ef 100644 --- a/website/config.toml +++ b/website/config.toml @@ -114,12 +114,12 @@ disableKinds = ["taxonomy", "taxonomyTerm"] # These entries appear in the drop-down menu at the top of the website. [[params.versions]] version = "latest" - githubbranch = "release-v1.5.1-aws-b1.0.0" + githubbranch = "release-v1.5.1-aws-b1.0.1" url = "https://awslabs.github.io/kubeflow-manifests/docs" [[params.versions]] version = "v1.5" - githubbranch = "release-v1.5.1-aws-b1.0.0" - url = "https://awslabs.github.io/kubeflow-manifests/release-v1.5.1-aws-b1.0.0/docs" + githubbranch = "release-v1.5.1-aws-b1.0.1" + url = "https://awslabs.github.io/kubeflow-manifests/release-v1.5.1-aws-b1.0.1/docs" [[params.versions]] version = "v1.4" githubbranch = "release-v1.4.1-aws-b1.0.0" diff --git a/website/content/en/docs/deployment/prerequisites.md b/website/content/en/docs/deployment/prerequisites.md index 171411e3ce..ff0f21f6fd 100644 --- a/website/content/en/docs/deployment/prerequisites.md +++ b/website/content/en/docs/deployment/prerequisites.md @@ -53,10 +53,10 @@ More details about cluster creation via `eksctl` can be found in the [Creating a ## Clone the repository Clone the [`awslabs/kubeflow-manifests`](https://github.com/awslabs/kubeflow-manifests) and the [`kubeflow/manifests`](https://github.com/kubeflow/manifests) repositories and check out the release branches of your choosing. -Substitute the value for `KUBEFLOW_RELEASE_VERSION`(e.g. v1.5.1) and `AWS_RELEASE_VERSION`(e.g. v1.5.1-aws-b1.0.0) with the tag or branch you want to use below. Read more about [releases and versioning]({{< ref "/docs/about/releases.md" >}}) if you are unsure about what these values should be. +Substitute the value for `KUBEFLOW_RELEASE_VERSION`(e.g. v1.5.1) and `AWS_RELEASE_VERSION`(e.g. v1.5.1-aws-b1.0.1) with the tag or branch you want to use below. Read more about [releases and versioning]({{< ref "/docs/about/releases.md" >}}) if you are unsure about what these values should be. ```bash -export KUBEFLOW_RELEASE_VERSION=<> -export AWS_RELEASE_VERSION=<> +export KUBEFLOW_RELEASE_VERSION=v1.5.1 +export AWS_RELEASE_VERSION=v1.5.1-aws-b1.0.1 git clone https://github.com/awslabs/kubeflow-manifests.git && cd kubeflow-manifests git checkout ${AWS_RELEASE_VERSION} git clone --branch ${KUBEFLOW_RELEASE_VERSION} https://github.com/kubeflow/manifests.git upstream