fix: Add Helm3 CRDs directory (#192)

Fixes #169

* fix: Add Helm3 CRDs directory
* docs: Add info for helmv3 warnings
This commit is contained in:
Sean Johnson 2019-12-19 09:50:18 +11:00 committed by GitHub
parent b1b2cf6640
commit 2fa31188ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 2524 additions and 1 deletions

View file

@ -24,6 +24,11 @@ $ helm repo add argo https://argoproj.github.io/argo-helm
$ helm install --name my-release argo/argo-cd
```
### Helm v3 Compatability
Requires chart version 1.5.1 or newer.
Helm v3 has removed the `install-crds` hook so CRDs are now populated by files in the [crds](./crds) directory. Users of Helm v3 should set the `installCRDs` value to `false` to avoid warnings about nonexistant webhooks.
## Chart Values
@ -34,6 +39,7 @@ $ helm install --name my-release argo/argo-cd
| global.image.tag | If defined, a tag applied to all ArgoCD deployments. | `"v1.3.6"` |
| global.securityContext | Toggle and define securityContext | See [values.yaml](values.yaml) | 
| nameOverride | Provide a name in place of `argocd` | `"argocd"` |
| installCRDs | bool | `true` | Install CRDs if you are using Helm2. |
| configs.knownHosts.data.ssh_known_hosts | Known Hosts | See [values.yaml](values.yaml) |
| configs.secret.bitbucketSecret | BitBucket incoming webhook secret | `""` |
| configs.secret.createSecret | Create the argocd-secret. | `true` |