From 08fe826afd0596f5dce2d74f44f739d4045c9a7e Mon Sep 17 00:00:00 2001 From: Marco Maurer Date: Tue, 4 Feb 2025 09:38:17 +0100 Subject: [PATCH] chore: Disable commit-server by default Signed-off-by: Marco Maurer --- charts/argo-cd/README.md | 2 +- charts/argo-cd/ci/with-commit-server-values.yaml | 3 +++ charts/argo-cd/values.yaml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 charts/argo-cd/ci/with-commit-server-values.yaml diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index 422bd75db..6c7b573a3 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -1636,7 +1636,7 @@ To read more about this component, please read [Argo CD Manifest Hydrator] and [ | commitServer.deploymentStrategy | object | `{}` | Deployment strategy to be added to the commit server Deployment | | commitServer.dnsConfig | object | `{}` | [DNS configuration] | | commitServer.dnsPolicy | string | `"ClusterFirst"` | Alternative DNS policy for commit server pods | -| commitServer.enabled | bool | `true` | Enable commit server | +| commitServer.enabled | bool | `false` | Enable commit server | | commitServer.extraArgs | list | `[]` | commit server command line flags | | commitServer.extraEnv | list | `[]` | Environment variables to pass to the commit server | | commitServer.extraEnvFrom | list | `[]` (See [values.yaml]) | envFrom to pass to the commit server | diff --git a/charts/argo-cd/ci/with-commit-server-values.yaml b/charts/argo-cd/ci/with-commit-server-values.yaml new file mode 100644 index 000000000..b4ffedca7 --- /dev/null +++ b/charts/argo-cd/ci/with-commit-server-values.yaml @@ -0,0 +1,3 @@ +# Test Argo CD with optional component "commit-server" +commitServer: + enabled: true diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 600604ee6..3b6f95810 100644 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -3753,7 +3753,7 @@ notifications: commitServer: # -- Enable commit server - enabled: true + enabled: false # -- Commit server name name: commit-server