Skip to content

Commit

Permalink
Update quickstart with link to Argo Workflows versions, set as ENV VAR (
Browse files Browse the repository at this point in the history
#3029)

Signed-off-by: Bryant Hagadorn <blhagadorn@gmail.com>
  • Loading branch information
blhagadorn committed Feb 19, 2024
1 parent a1bf698 commit c947370
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 c947370

Please sign in to comment.