From 9f620d7843c7ac5f2b283e900c922e1e4b5bfac8 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Wed, 15 May 2024 18:47:09 -0600 Subject: [PATCH] fix(docs): Clarify quick start installation. Fixes #13032 (#13047) Signed-off-by: Matt Fisher Signed-off-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Co-authored-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> --- docs/quick-start.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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