diff --git a/docs/quick-start.md b/docs/quick-start.md index 79ff12b8bd7d..858ad3b3bd7c 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -20,14 +20,18 @@ For quick testing, you can use a local cluster with: ## Install Argo Workflows -To install Argo Workflows, go to the [releases page](https://github.com/argoproj/argo-workflows/releases/latest). -Scroll down to the `Controller and Server` section and execute the `kubectl` commands. +First, specify the version you want to install in an environment variable. +Modify the command below: -Below is an example of the install commands (substitute `<>` with the version number): +```bash +ARGO_WORKFLOWS_VERSION="vX.Y.Z" +``` + +Then, copy the commands below to apply the quick-start manifest: ```bash kubectl create namespace argo -kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v<>/quick-start-minimal.yaml +kubectl apply -n argo -f "https://github.com/argoproj/argo-workflows/releases/download/${ARGO_WORKFLOWS_VERSION}/quick-start-minimal.yaml" ``` ## Install the Argo Workflows CLI