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:
Saad Ali 2023-03-10 19:13:50 +05:00
parent 4f7a42b396
commit acf19e80b0
No known key found for this signature in database
GPG key ID: A619C1FE4FC6D755
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -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: {}