Skip to content

Commit

Permalink
fix(docs): Clarify quick start installation. Fixes #13032 (#13047)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Fisher <mfisher87@gmail.com>
Signed-off-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com>
Co-authored-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com>
  • Loading branch information
mfisher87 and agilgur5 committed May 16, 2024
1 parent 9cacef3 commit 9f620d7
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<<ARGO_WORKFLOWS_VERSION>>` 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<<ARGO_WORKFLOWS_VERSION>>/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
Expand Down

0 comments on commit 9f620d7

Please sign in to comment.