fix(argo-cd): Set ConfigMap creation for CMP using sidecar approach to false by default
Signed-off-by: Saad Ali <saad@nixknight.net>
This commit is contained in:
parent
4f7a42b396
commit
acf19e80b0
2 changed files with 2 additions and 2 deletions
|
@ -428,7 +428,7 @@ NAME: my-release
|
|||
| configs.cm.create | bool | `true` | Create the argocd-cm configmap for [declarative setup] |
|
||||
| configs.cm.url | string | `""` | Argo CD's externally facing base URL (optional). Required when configuring SSO |
|
||||
| configs.cmp.annotations | object | `{}` | Annotations to be added to argocd-cmp-cm configmap |
|
||||
| configs.cmp.create | bool | `true` | Create the argocd-cmp-cm configmap |
|
||||
| configs.cmp.create | bool | `false` | Create the argocd-cmp-cm configmap |
|
||||
| configs.cmp.plugins | object | `{}` | Plugin yaml files to be added to argocd-cmp-cm |
|
||||
| configs.credentialTemplates | object | `{}` | Repository credentials to be used as Templates for other repos |
|
||||
| configs.credentialTemplatesAnnotations | object | `{}` | Annotations to be added to `configs.credentialTemplates` Secret |
|
||||
|
|
|
@ -335,7 +335,7 @@ configs:
|
|||
# Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/config-management-plugins/
|
||||
cmp:
|
||||
# -- Create the argocd-cmp-cm configmap
|
||||
create: true
|
||||
create: false
|
||||
|
||||
# -- Annotations to be added to argocd-cmp-cm configmap
|
||||
annotations: {}
|
||||
|
|
Loading…
Reference in a new issue