Skip to content

Commit

Permalink
Update quickstart with link to Argo Workflows versions and setting ve…
Browse files Browse the repository at this point in the history
…rsion with environment variable

The part of the command to replace the ARGO_WORKFLOWS_VERSION gets cut off, this adds a link for the user to grab a version from the Argo Workflow project as well as gives the user a quick link to find the latest version of Argo Workflows
  • Loading branch information
blhagadorn authored Feb 18, 2024
1 parent a1bf698 commit 933d706
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ We are going to set up a sensor and event-source for webhook. The goal is to tri
Note: You will need to have [Argo Workflows](https://argoproj.github.io/argo-workflows/) installed to make this work.
The Argo Workflow controller will need to be configured to listen for Workflow objects created in `argo-events` namespace.
(See [this](https://github.com/argoproj/argo-workflows/blob/master/docs/managed-namespace.md) link.)
The Workflow Controller will need to be installed either in a cluster-scope configuration (i.e. no "--namespaced" argument) so that it has visiblity to all namespaces, or with "--managed-namespace" set to define "argo-events" as a namespace it has visibility to. To deploy Argo Workflows with a cluster-scope configuration you can use this installation yaml file:
The Workflow Controller will need to be installed either in a cluster-scope configuration (i.e. no "--namespaced" argument) so that it has visiblity to all namespaces, or with "--managed-namespace" set to define "argo-events" as a namespace it has visibility to. To deploy Argo Workflows with a cluster-scope configuration you can use this installation yaml file, setting `ARGO_WORKFLOWS_VERSION` with your desired version. A list of versions can be found by viewing [these](https://github.com/argoproj/argo-workflows/tags) project tags in the Argo Workflow GitHub repository.

export ARGO_WORKFLOWS_VERSION=3.5.4
kubectl create namespace argo
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v<<ARGO_WORKFLOWS_VERSION>>/install.yaml
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v$ARGO_WORKFLOWS_VERSION/install.yaml

1. Install Argo Events

Expand Down

0 comments on commit 933d706

Please sign in to comment.