You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| argocd.commitServer.dnsPolicy | string |`"ClusterFirst"`| Alternative DNS policy for commit server pods |
@@ -175,6 +177,8 @@ A Helm chart for Kubernetes
175
177
| argocd.commitServer.runtimeClassName | string |`""` (defaults to global.runtimeClassName) | Runtime class name for the commit server |
176
178
| argocd.commitServer.service.annotations | object |`{}`| commit server service annotations |
177
179
| argocd.commitServer.service.labels | object |`{}`| commit server service labels |
180
+
| argocd.commitServer.service.port | int |`8086`| commit server service port |
181
+
| argocd.commitServer.service.portName | string |`"server"`| commit server service port name |
178
182
| argocd.commitServer.serviceAccount.annotations | object |`{}`| Annotations applied to created service account |
179
183
| argocd.commitServer.serviceAccount.automountServiceAccountToken | bool |`true`| Automount API credentials for the Service Account |
180
184
| argocd.commitServer.serviceAccount.create | bool |`true`| Create commit server service account |
@@ -220,6 +224,7 @@ A Helm chart for Kubernetes
220
224
| argocd.configs.params."controller.self.heal.timeout.seconds" | int |`5`| Specifies timeout between application self heal attempts |
221
225
| argocd.configs.params."controller.status.processors" | int |`20`| Number of application status processors |
222
226
| argocd.configs.params."controller.sync.timeout.seconds" | int |`0`| Specifies the timeout after which a sync would be terminated. 0 means no timeout |
227
+
| argocd.configs.params."hydrator.enabled" | bool |`false`| Enable the hydrator feature (hydrator is in Alpha phase) |
| argocd.configs.params."reposerver.parallelism.limit" | int |`0`| Limit on number of concurrent manifests generate requests. Any value less the 1 means no limit. |
225
230
| argocd.configs.params."server.basehref" | string |`"/"`| Value for base href in index.html. Used if Argo CD is running behind reverse proxy under subpath different from / |
@@ -268,6 +273,7 @@ A Helm chart for Kubernetes
268
273
| argocd.controller.containerPorts.metrics | int |`8082`| Metrics container port |
| argocd.controller.dnsPolicy | string |`"ClusterFirst"`| Alternative DNS policy for application controller pods |
273
279
| argocd.controller.dynamicClusterDistribution | bool |`false`| Enable dynamic cluster distribution (alpha) Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution # This is done using a deployment instead of a statefulSet # When replicas are added or removed, the sharding algorithm is re-run to ensure that the # clusters are distributed according to the algorithm. If the algorithm is well-balanced, # like round-robin, then the shards will be well-balanced. |
@@ -359,6 +365,7 @@ A Helm chart for Kubernetes
359
365
| argocd.dex.containerPorts.metrics | int |`5558`| Metrics container port |
| argocd.dex.image.tag | string |`"v2.42.1"`| Dex image tag |
380
+
| argocd.dex.image.tag | string |`"v2.43.1"`| Dex image tag |
374
381
| argocd.dex.imagePullSecrets | list |`[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
375
382
| argocd.dex.initContainers | list |`[]`| Init containers to add to the dex pod # Note: Supports use of custom Helm templates |
376
383
| argocd.dex.initImage.imagePullPolicy | string |`""` (defaults to global.image.imagePullPolicy) | Argo CD init image imagePullPolicy |
@@ -436,7 +443,7 @@ A Helm chart for Kubernetes
436
443
| argocd.dex.topologySpreadConstraints | list |`[]` (defaults to global.topologySpreadConstraints) | Assign custom [TopologySpreadConstraints] rules to dex # Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ # If labelSelector is left out, it will default to the labelSelector configuration of the deployment |
437
444
| argocd.dex.volumeMounts | list |`[]`| Additional volumeMounts to the dex main container |
438
445
| argocd.dex.volumes | list |`[]`| Additional volumes to the dex pod |
439
-
| argocd.externalRedis.existingSecret | string |`""`| The name of an existing secret with Redis (must contain key `redis-password`) and Sentinel credentials. When it's set, the `externalRedis.password`parameter is ignored |
446
+
| argocd.externalRedis.existingSecret | string |`""`| The name of an existing secret with Redis (must contain key `redis-password`. And should contain `redis-username` if username is not `default`) and Sentinel credentials. When it's set, the `externalRedis.username` and `externalRedis.password`parameters are ignored |
440
447
| argocd.externalRedis.host | string |`""`| External Redis server host |
| argocd.externalRedis.port | int |`6379`| External Redis server port |
@@ -451,6 +458,7 @@ A Helm chart for Kubernetes
451
458
| argocd.global.affinity.podAntiAffinity | string |`"soft"`| Default pod anti-affinity rules. Either: `none`, `soft` or `hard`|
452
459
| argocd.global.certificateAnnotations | object |`{}`| Annotations for the all deployed Certificates |
453
460
| argocd.global.deploymentAnnotations | object |`{}`| Annotations for the all deployed Deployments |
461
+
| argocd.global.deploymentLabels | object |`{}`| Labels for the all deployed Deployments |
454
462
| argocd.global.deploymentStrategy | object |`{}`| Deployment strategy for the all deployed Deployments |
455
463
| argocd.global.domain | string |`"argocd.example.com"`| Default domain used by all components # Used for ingresses, certificates, SSO, notifications, etc. |
456
464
| argocd.global.dualStack.ipFamilies | list |`[]`| IP families that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6. |
| argocd.notifications.context | object |`{}`| Define user-defined context # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/templates/#defining-user-defined-context|
489
497
| argocd.notifications.deploymentAnnotations | object |`{}`| Annotations to be applied to the notifications controller Deployment |
498
+
| argocd.notifications.deploymentLabels | object |`{}`| Labels for the notifications controller Deployment |
490
499
| argocd.notifications.deploymentStrategy | object |`{"type":"Recreate"}`| Deployment strategy to be added to the notifications controller Deployment |
| argocd.redis-ha.haproxy.labels | object |`{"app.kubernetes.io/name":"argocd-redis-ha-haproxy"}`| Custom labels for the haproxy pod. This is relevant for Argo CD CLI. |
| argocd.redis-ha.image.tag | string |`"7.2.8-alpine"`| Redis tag # Do not upgrade to >= 7.4.0, otherwise you are no longer using an open source version of Redis |
| argocd.redis-ha.redis.config | object | See [values.yaml]| Any valid redis config options in this section will be applied to each server (see `redis-ha` chart) |
@@ -596,6 +606,7 @@ A Helm chart for Kubernetes
596
606
| argocd.redis.containerPorts.redis | int |`6379`| Redis container port |
| argocd.redis.exporter.livenessProbe.failureThreshold | int |`5`| Minimum consecutive failures for the [probe] to be considered failed after having succeeded |
612
623
| argocd.redis.exporter.livenessProbe.initialDelaySeconds | int |`30`| Number of seconds after the container has started before [probe] is initiated |
@@ -623,7 +634,7 @@ A Helm chart for Kubernetes
623
634
| argocd.redis.extraArgs | list |`[]`| Additional command line arguments to pass to redis-server |
624
635
| argocd.redis.extraContainers | list |`[]`| Additional containers to be added to the redis pod # Note: Supports use of custom Helm templates |
| argocd.redis.image.tag | string |`"7.2.8-alpine"`| Redis tag # Do not upgrade to >= 7.4.0, otherwise you are no longer using an open source version of Redis |
628
639
| argocd.redis.imagePullSecrets | list |`[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
629
640
| argocd.redis.initContainers | list |`[]`| Init containers to add to the redis pod # Note: Supports use of custom Helm templates |
@@ -723,6 +734,7 @@ A Helm chart for Kubernetes
723
734
| argocd.repoServer.containerPorts.server | int |`8081`| Repo server container port |
724
735
| argocd.repoServer.containerSecurityContext | object | See [values.yaml]| Repo server container-level security context |
725
736
| argocd.repoServer.deploymentAnnotations | object |`{}`| Annotations to be added to repo server Deployment |
737
+
| argocd.repoServer.deploymentLabels | object |`{}`| Labels for the repo server Deployment |
726
738
| argocd.repoServer.deploymentStrategy | object |`{}`| Deployment strategy to be added to the repo server Deployment |
| argocd.repoServer.dnsPolicy | string |`"ClusterFirst"`| Alternative DNS policy for Repo server pods |
@@ -786,6 +798,7 @@ A Helm chart for Kubernetes
786
798
| argocd.repoServer.service.labels | object |`{}`| Repo server service labels |
787
799
| argocd.repoServer.service.port | int |`8081`| Repo server service port |
788
800
| argocd.repoServer.service.portName | string |`"tcp-repo-server"`| Repo server service port name |
801
+
| argocd.repoServer.service.trafficDistribution | string |`""`| Traffic distribution preference for the repo server service. If the field is not set, the implementation will apply its default routing strategy. |
789
802
| argocd.repoServer.serviceAccount.annotations | object |`{}`| Annotations applied to created service account |
790
803
| argocd.repoServer.serviceAccount.automountServiceAccountToken | bool |`true`| Automount API credentials for the Service Account |
791
804
| argocd.repoServer.serviceAccount.create | bool |`true`| Create repo server service account |
@@ -832,6 +845,7 @@ A Helm chart for Kubernetes
832
845
| argocd.server.containerPorts.server | int |`8080`| Server container port |
833
846
| argocd.server.containerSecurityContext | object | See [values.yaml]| Server container-level security context |
834
847
| argocd.server.deploymentAnnotations | object |`{}`| Annotations to be added to server Deployment |
848
+
| argocd.server.deploymentLabels | object |`{}`| Labels for the server Deployment |
835
849
| argocd.server.deploymentStrategy | object |`{}`| Deployment strategy to be added to the server Deployment |
0 commit comments