fix: Add Helm3 CRDs directory (#192)
Fixes #169 * fix: Add Helm3 CRDs directory * docs: Add info for helmv3 warnings
This commit is contained in:
parent
b1b2cf6640
commit
2fa31188ed
4 changed files with 2524 additions and 1 deletions
|
|
@ -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` |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue