diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index 44bc79d7..bed7de14 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -1658,7 +1658,6 @@ To read more about this component, please read [Argo CD Manifest Hydrator] and [ | commitServer.readinessProbe.initialDelaySeconds | int | `5` | Number of seconds after the container has started before [probe] is initiated | | commitServer.readinessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the [probe] | | commitServer.readinessProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out | -| commitServer.replicas | int | `1` | The number of commit server pods to run | | commitServer.resources | object | `{}` | Resource limits and requests for the commit server pods. | | commitServer.runtimeClassName | string | `""` (defaults to global.runtimeClassName) | Runtime class name for the commit server | | commitServer.service.annotations | object | `{}` | commit server service annotations | diff --git a/charts/argo-cd/templates/argocd-commit-server/deployment.yaml b/charts/argo-cd/templates/argocd-commit-server/deployment.yaml index 306632b1..592a4133 100644 --- a/charts/argo-cd/templates/argocd-commit-server/deployment.yaml +++ b/charts/argo-cd/templates/argocd-commit-server/deployment.yaml @@ -17,7 +17,6 @@ spec: strategy: {{- trim . | nindent 4 }} {{- end }} - replicas: {{ .Values.commitServer.replicas }} revisionHistoryLimit: {{ .Values.global.revisionHistoryLimit }} selector: matchLabels: diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 388132fd..3eb8fc92 100644 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -3758,9 +3758,6 @@ commitServer: # -- Commit server name name: commit-server - # -- The number of commit server pods to run - replicas: 1 - # -- Runtime class name for the commit server # @default -- `""` (defaults to global.runtimeClassName) runtimeClassName: ""