Adding note to the README about how to install CRDs from github

This commit is contained in:
Andrew Suderman 2019-11-11 10:30:50 -07:00
parent 8e0e3bbd0e
commit 9fcd52d292
No known key found for this signature in database
GPG key ID: 9C9CAE7EC2133DB7

View file

@ -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
```