From 6f16750cb319c5886b8069f9477af2c16c408f69 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Tue, 9 Jan 2024 02:12:45 -0600 Subject: [PATCH] Update quick_start.md (#2965) --- 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.