Skip to content

Commit

Permalink
chore: Disable commit-server by default
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Maurer <mkilchhofer@users.noreply.github.com>
  • Loading branch information
mkilchhofer committed Feb 4, 2025
1 parent 509eb26 commit 08fe826
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/argo-cd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
3 changes: 3 additions & 0 deletions charts/argo-cd/ci/with-commit-server-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Test Argo CD with optional component "commit-server"
commitServer:
enabled: true
2 changes: 1 addition & 1 deletion charts/argo-cd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3753,7 +3753,7 @@ notifications:

commitServer:
# -- Enable commit server
enabled: true
enabled: false

# -- Commit server name
name: commit-server
Expand Down

0 comments on commit 08fe826

Please sign in to comment.