From ee4c165dc03e36a0b5c1d8b6ab7289706b10b357 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Thu, 4 Jan 2024 19:01:50 -0600 Subject: [PATCH] Update quick_start.md Quick Start guide does not actually install Argo Events CRDs! The creation of the EventBus will therefore fail. These commands are copied from the [full installation instructions](https://argoproj.github.io/argo-events/installation/). --- docs/quick_start.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/quick_start.md b/docs/quick_start.md index 0c3bb646ec..9e87eeac9e 100644 --- a/docs/quick_start.md +++ b/docs/quick_start.md @@ -10,9 +10,16 @@ The Argo Workflow controller will need to be configured to listen for Workflow o kubectl create namespace argo kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v<>/install.yaml -1. Make sure to have the eventbus pods running in the namespace. Run following command to create the eventbus. - +1. Install Argo Events + kubectl create namespace argo-events + kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-events/stable/manifests/install.yaml + # Install with a validating admission controller + kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-events/stable/manifests/install-validating-webhook.yaml + + +1. Make sure to have the eventbus pods running in the namespace. Run following command to create the eventbus. + kubectl apply -n argo-events -f https://raw.githubusercontent.com/argoproj/argo-events/stable/examples/eventbus/native.yaml 1. Setup event-source for webhook as follows.