From 9fcd52d292733b34e963f4dc690e9d9b854234ec Mon Sep 17 00:00:00 2001 From: Andrew Suderman Date: Mon, 11 Nov 2019 10:30:50 -0700 Subject: [PATCH] Adding note to the README about how to install CRDs from github --- charts/argo-events/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/charts/argo-events/README.md b/charts/argo-events/README.md index 174a8114..74cf9e83 100644 --- a/charts/argo-events/README.md +++ b/charts/argo-events/README.md @@ -14,3 +14,10 @@ This is a **community maintained** chart. It installs the [argo-events](https:// ## Notes on CRD Installation Some users would prefer to install the CRDs _outside_ of the chart. You can disable the CRD installation of this chart by using `--set installCRD=false` when installing the chart. + +You can install the CRDs manually like so: + +``` +kubectl apply -f https://github.com/argoproj/argo-events/raw/v0.11/hack/k8s/manifests/sensor-crd.yaml +kubectl apply -f https://github.com/argoproj/argo-events/raw/v0.11/hack/k8s/manifests/gateway-crd.yaml +```