1## Argo CD configuration
2## Ref: https://github.com/argoproj/argo-cd
5# -- Provide a name in place of `argocd`
7# -- String to fully override `"argo-cd.fullname"`
9# -- Override the namespace
10# @default -- `.Release.Namespace`
12# -- Override the Kubernetes version, which is used to evaluate certain manifests
13kubeVersionOverride: ""
15# If you want to template helm charts but cannot access k8s API server
16# you can set api versions here
17apiVersionOverrides: {}
18# -- Create aggregated roles that extend existing cluster roles to interact with argo-cd resources
19## Ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#aggregated-clusterroles
20createAggregateRoles: false
21# -- Create cluster roles for cluster-wide installation.
22## Used when you manage applications in the same cluster where Argo CD runs
23createClusterRoles: true
25 # -- enables using arbitrary uid for argo repo server
27## Custom resource configuration
29 # -- Install and upgrade CRDs
31 # -- Keep CRDs on chart uninstall
33 # -- Annotations to be added to all CRDs
35 argocd.argoproj.io/sync-options: ServerSideApply=true
36 # -- Additional labels to be added to all CRDs
38## Globally shared configuration
40 # -- Default domain used by all components
41 ## Used for ingresses, certificates, SSO, notifications, etc.
42 domain: argocd.example.com
43 # -- Runtime class name for all components
45 # -- Common labels for the all resources
49 # -- Number of old deployment ReplicaSets to retain. The rest will be garbage collected.
50 revisionHistoryLimit: 3
51 # Default image used by all components
53 # -- If defined, a repository applied to all Argo CD deployments
54 repository: cgr.dev/chainguard-private/argocd
55 # -- Overrides the global Argo CD image tag whose default is the chart appVersion
56 tag: 3.5.2@sha256:a65bdf2ce7bc3b0d54fd0e02f6a2e1bc1b16d48be5c5d0b2c369ef9c15c380e8
57 # -- If defined, a imagePullPolicy applied to all Argo CD deployments
58 imagePullPolicy: IfNotPresent
59 # -- Secrets with credentials to pull images from a private registry
61 # Default logging options used by all components
63 # -- Set the global logging format. Either: `text` or `json`
65 # -- Set the global logging level. One of: `debug`, `info`, `warn` or `error`
67 # -- Annotations for the all deployed Statefulsets
68 statefulsetAnnotations: {}
69 # -- Labels for the all deployed Statefulsets
71 # -- Annotations for the all deployed Deployments
72 deploymentAnnotations: {}
73 # -- Labels for the all deployed Deployments
75 # -- Annotations for the all deployed pods
77 # -- Labels for the all deployed pods
79 # -- Add Prometheus scrape annotations to all metrics services. This can be used as an alternative to the ServiceMonitors.
80 addPrometheusAnnotations: false
81 # -- Toggle and define pod-level security context.
82 # @default -- `{}` (See [values.yaml])
88 # -- Mapping between IP and hostnames that will be injected as entries in the pod's hosts files
94 # Configure dual-stack used by all component services
96 # -- IP family policy to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services)
98 # -- 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.
100 # Default network policy rules used by all components
102 # -- Create NetworkPolicy objects for all components
104 # -- Default deny all ingress traffic
105 defaultDenyIngress: false
106 # -- Default priority class for all components
107 priorityClassName: ""
108 # -- Default node selector for all components
110 kubernetes.io/os: linux
111 # -- Default tolerations for all components
113 # Default affinity preset for all components
115 # -- Default pod anti-affinity rules. Either: `none`, `soft` or `hard`
116 podAntiAffinity: soft
117 # Node affinity rules
119 # -- Default node affinity rules. Either: `none`, `soft` or `hard`
121 # -- Default match expressions for node affinity
123 # - key: topology.kubernetes.io/zone
128 # -- Default [TopologySpreadConstraints] rules for all components
129 ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
130 ## If labelSelector is left out, it will default to the labelSelector of the component
131 topologySpreadConstraints: []
133 # topologyKey: topology.kubernetes.io/zone
134 # whenUnsatisfiable: DoNotSchedule
136 # -- Deployment strategy for the all deployed Deployments
137 deploymentStrategy: {}
138 # type: RollingUpdate
141 # maxUnavailable: 25%
143 # -- Environment variables to pass to all deployed Deployments
145 # -- Extra volumes to add to all deployed Deployments and StatefulSets
147 # Example of adding a custom CA bundle from a ConfigMap:
150 # name: my-trustbundle
153 # path: ca-certificates.crt
155 # -- Extra volume mounts to add to all deployed Deployments and StatefulSets
156 extraVolumeMounts: []
157 # Example of adding a custom CA bundle mount:
159 # mountPath: /etc/ssl/certs
161 # -- Annotations for the all deployed Certificates
162 certificateAnnotations: {}
165 # General Argo CD configuration. Any values you put under `.configs.cm` are passed to argocd-cm ConfigMap.
166 ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cm.yaml
168 # -- Create the argocd-cm configmap for [declarative setup]
170 # -- Annotations to be added to argocd-cm configmap
172 # -- The name of tracking label used by Argo CD for resource pruning
173 application.instanceLabelKey: argocd.argoproj.io/instance
174 # -- Enable control of the service account used for the sync operation (alpha)
175 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/app-sync-using-impersonation/
176 application.sync.impersonation.enabled: false
177 # -- Enable exec feature in Argo UI
178 ## Ref: https://argo-cd.readthedocs.io/en/latest/operator-manual/rbac/#exec-resource
180 # -- Enable local admin user
181 ## Ref: https://argo-cd.readthedocs.io/en/latest/faq/#how-to-disable-admin-user
183 # -- Timeout to discover if a new manifests version got published to the repository
184 timeout.reconciliation: 120s
185 # -- Maximum jitter added to the reconciliation timeout to spread out refreshes and reduce repo-server load
186 timeout.reconciliation.jitter: 60s
187 # -- Timeout to refresh application data as well as target manifests cache
188 timeout.hard.reconciliation: 0s
189 # -- Enable Status Badge
190 ## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/status-badge/
191 statusbadge.enabled: false
200 # clientID: aabbccddeeff00112233
201 # clientSecret: $dex.github.clientSecret # Alternatively $<some_K8S_secret>:dex.github.clientSecret
203 # - name: your-github-org
205 # OIDC configuration as an alternative to dex (optional).
208 # issuer: https://login.microsoftonline.com/TENANT_ID/v2.0
209 # clientID: aaaabbbbccccddddeee
210 # clientSecret: $oidc.azuread.clientSecret
211 # # Optional: set to true to use Azure Workload Identity instead of clientSecret
213 # useWorkloadIdentity: false
215 # Some OIDC providers require a separate clientID for different callback URLs.
216 # For example, if configuring Argo CD with self-hosted Dex, you will need a separate client ID
217 # for the 'localhost' (CLI) client to Dex. This field is optional. If omitted, the CLI will
218 # use the same clientID as the Argo CD server
219 # cliClientID: vvvvwwwwxxxxyyyyzzzz
222 # -----BEGIN CERTIFICATE-----
223 # ... encoded certificate data here ...
224 # -----END CERTIFICATE-----
226 # Optional list of allowed aud claims. If omitted or empty, defaults to the clientID value above (and the
227 # cliClientID, if that is also specified). If you specify a list and want the clientID to be allowed, you must
228 # explicitly include it in the list.
229 # Token verification will pass if any of the token's audiences matches any of the audiences in this list.
231 # - aaaabbbbccccddddeee
232 # - qqqqwwwweeeerrrrttt
234 # Optional set of OIDC claims to request on the ID token.
235 # requestedIDTokenClaims:
239 # Optional set of OIDC scopes to request. If omitted, defaults to: ["openid", "profile", "email", "groups"]
245 # PKCE authentication flow processes authorization flow from browser only - default false
247 # make sure the Identity Provider (IdP) is public and doesn't need clientSecret
248 # make sure the Identity Provider (IdP) has this redirect URI registered: https://argocd.example.com/pkce/verify
249 # enablePKCEAuthentication: true
251 # Extension Configuration
252 ## Ref: https://argo-cd.readthedocs.io/en/latest/developer-guide/extensions/proxy-extensions/
253 # extension.config: |
257 # connectionTimeout: 2s
259 # idleConnectionTimeout: 60s
260 # maxIdleConnections: 30
262 # - url: http://httpbin.org
264 # - name: some-header
265 # value: '$some.argocd.secret.key'
268 # server: https://some-cluster
270 ## Default configuration for ignoreResourceUpdates.
271 ## The ignoreResourceUpdates list contains K8s resource's properties that are known to be frequently updated
272 ## by controllers and operators. These resources, when watched by argo, will cause many unnecessary updates.
274 # -- Ignoring status for all resources. An update will still be sent if the status update causes the health to change.
275 # @default -- See [values.yaml]
276 resource.customizations.ignoreResourceUpdates.all: |
279 # -- Some Application fields are generated and not related to the application updates itself
280 ## The Application itself is already watched by the controller lister, but this configuration is applied for apps of apps
281 # @default -- See [values.yaml]
282 resource.customizations.ignoreResourceUpdates.argoproj.io_Application: |
284 - '.metadata.annotations."notified.notifications.argoproj.io"'
285 - '.metadata.annotations."argocd.argoproj.io/refresh"'
286 - '.metadata.annotations."argocd.argoproj.io/hydrate"'
288 # -- Ignore Argo Rollouts generated fields
289 # @default -- See [values.yaml]
290 resource.customizations.ignoreResourceUpdates.argoproj.io_Rollout: |
292 - '.metadata.annotations."notified.notifications.argoproj.io"'
293 # -- Legacy annotations used on HPA autoscaling/v1
294 # @default -- See [values.yaml]
295 resource.customizations.ignoreResourceUpdates.autoscaling_HorizontalPodAutoscaler: |
297 - '.metadata.annotations."autoscaling.alpha.kubernetes.io/behavior"'
298 - '.metadata.annotations."autoscaling.alpha.kubernetes.io/conditions"'
299 - '.metadata.annotations."autoscaling.alpha.kubernetes.io/metrics"'
300 - '.metadata.annotations."autoscaling.alpha.kubernetes.io/current-metrics"'
301 # -- Ignore the cluster-autoscaler status
302 # @default -- See [values.yaml]
303 resource.customizations.ignoreResourceUpdates.ConfigMap: |
305 # Ignore the cluster-autoscaler status
306 - '.metadata.annotations."cluster-autoscaler.kubernetes.io/last-updated"'
307 # Ignore the annotation of the legacy Leases election
308 - '.metadata.annotations."control-plane.alpha.kubernetes.io/leader"'
309 # -- Ignore the common scaling annotations
310 # @default -- See [values.yaml]
311 resource.customizations.ignoreResourceUpdates.apps_ReplicaSet: |
313 - '.metadata.annotations."deployment.kubernetes.io/desired-replicas"'
314 - '.metadata.annotations."deployment.kubernetes.io/max-replicas"'
315 - '.metadata.annotations."rollout.argoproj.io/desired-replicas"'
316 # -- Ignores update if EndpointSlice is not excluded globally
317 # @default -- See [values.yaml]
318 resource.customizations.ignoreResourceUpdates.discovery.k8s.io_EndpointSlice: |
323 # -- Ignores update if Endpoints is not excluded globally
324 # @default -- See [values.yaml]
325 resource.customizations.ignoreResourceUpdates.Endpoints: |
329 ## Default configuration for exclusions.
330 ## The exclusion list are K8s resources that we assume will never be declared in Git,
331 ## and are never child objects of managed resources that need to be presented in the resource tree.
332 ## This list contains high volume and high churn metadata objects which we exclude for performance
333 ## reasons, reducing connections and load to the K8s API servers of managed clusters.
335 # -- Resource Exclusion/Inclusion
336 # @default -- See [values.yaml]
337 resource.exclusions: |
338 ### Network resources created by the Kubernetes control plane and excluded to reduce the number of watched events and UI clutter
345 ### Internal Kubernetes resources excluded reduce the number of watched events
347 - coordination.k8s.io
350 ### Internal Kubernetes Authz/Authn resources excluded reduce the number of watched events
352 - authentication.k8s.io
353 - authorization.k8s.io
357 - LocalSubjectAccessReview
358 - SelfSubjectAccessReview
359 - SelfSubjectRulesReview
360 - SubjectAccessReview
361 ### Intermediate Certificate Request excluded reduce the number of watched events
363 - certificates.k8s.io
365 - CertificateSigningRequest
370 ### Cilium internal resources excluded reduce the number of watched events and UI Clutter
376 - CiliumEndpointSlice
377 ### Kyverno intermediate and reporting resources excluded reduce the number of watched events and improve performance
384 - ClusterPolicyReport
386 - ClusterEphemeralReport
388 - ClusterAdmissionReport
389 - BackgroundScanReport
390 - ClusterBackgroundScanReport
392 # -- Additional resource exclusions to append to the default `resource.exclusions` list above,
393 # so that the defaults can be kept up to date without needing to duplicate/override them.
394 # These entries are always appended, never substituted: if you also set `resource.exclusions`
395 # yourself, they are appended to your value rather than to the chart defaults.
397 resourceExclusionsAdditional: []
398 # Argo CD configuration parameters
399 ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cmd-params-cm.yaml
401 # -- Create the argocd-cmd-params-cm configmap
402 # If false, it is expected the configmap will be created by something else.
404 # -- Annotations to be added to the argocd-cmd-params-cm ConfigMap
406 # You can customize parameters by adding parameters here.
409 # Argo CD RBAC policy configuration
410 ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/rbac.md
412 # -- Create the argocd-rbac-cm configmap with ([Argo CD RBAC policy]) definitions.
413 # If false, it is expected the configmap will be created by something else.
414 # Argo CD will not work if there is no configmap created with the name above.
416 # -- Annotations to be added to argocd-rbac-cm configmap
418 # -- The name of the default role which Argo CD will falls back to, when authorizing API requests (optional).
419 # If omitted or empty, users may be still be able to login, but will see no apps, projects, etc...
421 # -- File containing user-defined policies and role definitions.
422 # @default -- `''` (See [values.yaml])
424 # Policy rules are in the form:
425 # p, subject, resource, action, object, effect
426 # Role definitions and bindings are in the form:
427 # g, subject, inherited-subject
429 # p, role:org-admin, applications, *, */*, allow
430 # p, role:org-admin, clusters, get, *, allow
431 # p, role:org-admin, repositories, *, *, allow
432 # p, role:org-admin, logs, get, *, allow
433 # p, role:org-admin, exec, create, */*, allow
434 # g, your-github-org:your-team, role:org-admin
436 # -- OIDC scopes to examine during rbac enforcement (in addition to `sub` scope).
437 # The scope value can be a string, or a list of strings.
439 # -- Matcher function for Casbin, `glob` for glob matcher and `regex` for regex matcher.
440 policy.matchMode: "glob"
441 # GnuPG public keys for commit verification
442 ## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/gpg-verification/
444 # -- Annotations to be added to argocd-gpg-keys-cm configmap
446 # -- [GnuPG] public keys to add to the keyring
447 # @default -- `{}` (See [values.yaml])
448 ## Note: Public keys should be exported with `gpg --export --armor <KEY>`
450 # 4AEE18F83AFDEB23: |
451 # -----BEGIN PGP PUBLIC KEY BLOCK-----
453 # -----END PGP PUBLIC KEY BLOCK-----
454 # SSH known hosts for Git repositories
455 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#ssh-known-host-public-keys
457 # -- Specifies if the argocd-ssh-known-hosts-cm configmap should be created by Helm.
459 # -- Annotations to be added to argocd-ssh-known-hosts-cm configmap
461 # -- Known hosts to be added to the known host list by default.
462 # @default -- See [values.yaml]
464 [ssh.github.com]:443 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=
465 [ssh.github.com]:443 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl
466 [ssh.github.com]:443 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk=
467 bitbucket.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPIQmuzMBuKdWeF4+a2sjSSpBK0iqitSQ+5BM9KhpexuGt20JpTVM7u5BDZngncgrqDMbWdxMWWOGtZ9UgbqgZE=
468 bitbucket.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIazEu89wgQZ4bqs3d63QSMzYVa0MuJ2e2gKTKqu+UUO
469 bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQeJzhupRu0u0cdegZIa8e86EG2qOCsIsD1Xw0xSeiPDlCr7kq97NLmMbpKTX6Esc30NuoqEEHCuc7yWtwp8dI76EEEB1VqY9QJq6vk+aySyboD5QF61I/1WeTwu+deCbgKMGbUijeXhtfbxSxm6JwGrXrhBdofTsbKRUsrN1WoNgUa8uqN1Vx6WAJw1JHPhglEGGHea6QICwJOAr/6mrui/oB7pkaWKHj3z7d1IC4KWLtY47elvjbaTlkN04Kc/5LFEirorGYVbt15kAUlqGM65pk6ZBxtaO3+30LVlORZkxOh+LKL/BvbZ/iRNhItLqNyieoQj/uh/7Iv4uyH/cV/0b4WDSd3DptigWq84lJubb9t/DnZlrJazxyDCulTmKdOR7vs9gMTo+uoIrPSb8ScTtvw65+odKAlBj59dhnVp9zd7QUojOpXlL62Aw56U4oO+FALuevvMjiWeavKhJqlR7i5n9srYcrNV7ttmDw7kf/97P5zauIhxcjX+xHv4M=
470 github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=
471 github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl
472 github.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk=
473 gitlab.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFSMqzJeV9rUzU4kWitGjeR4PWSa29SPqJ1fVkhtj3Hw9xjLVXVYrU9QlYWrOLXBpQ6KWjbjTDTdDkoohFzgbEY=
474 gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf
475 gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9
476 ssh.dev.azure.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H
477 vs-ssh.visualstudio.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H
478 # -- Additional known hosts for private repositories
480 # Repository TLS certificates
481 # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#repositories-using-self-signed-tls-certificates-or-are-signed-by-custom-ca
483 # -- Annotations to be added to argocd-tls-certs-cm configmap
485 # -- TLS certificates for Git repositories
486 # @default -- `{}` (See [values.yaml])
488 # server.example.com: |
489 # -----BEGIN CERTIFICATE-----
491 # -----END CERTIFICATE-----
493 # -- Specifies if the argocd-tls-certs-cm configmap should be created by Helm.
495 # ConfigMap for Config Management Plugins
496 # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/config-management-plugins/
498 # -- Create the argocd-cmp-cm configmap
500 # -- Annotations to be added to argocd-cmp-cm configmap
502 # -- Plugin yaml files to be added to argocd-cmp-cm
508 # args: [-c, 'echo "Initializing..."']
513 # echo "{\"kind\": \"ConfigMap\", \"apiVersion\": \"v1\", \"metadata\": { \"name\": \"$ARGOCD_APP_NAME\", \"namespace\": \"$ARGOCD_APP_NAMESPACE\", \"annotations\": {\"Foo\": \"$ARGOCD_ENV_FOO\", \"KubeVersion\": \"$KUBE_VERSION\", \"KubeApiVersion\": \"$KUBE_API_VERSIONS\",\"Bar\": \"baz\"}}}"
515 # fileName: "./subdir/s*.yaml"
517 # glob: "**/Chart.yaml"
518 # command: [sh, -c, find . -name env.yaml]
523 # args: [-c, 'echo "Initializing..."']
528 # echo "{\"kind\": \"ConfigMap\", \"apiVersion\": \"v1\", \"metadata\": { \"name\": \"$ARGOCD_APP_NAME\", \"namespace\": \"$ARGOCD_APP_NAMESPACE\", \"annotations\": {\"Foo\": \"$ARGOCD_ENV_FOO\", \"KubeVersion\": \"$KUBE_VERSION\", \"KubeApiVersion\": \"$KUBE_API_VERSIONS\",\"Bar\": \"baz\"}}}"
530 # fileName: "./subdir/s*.yaml"
532 # glob: "**/Chart.yaml"
533 # command: [sh, -c, find . -name env.yaml]
535 # -- Provide one or multiple [external cluster credentials]
536 # @default -- `{}` (See [values.yaml])
538 ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#clusters
539 ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/security/#external-cluster-credentials
540 ## - https://argo-cd.readthedocs.io/en/stable/user-guide/projects/#project-scoped-repositories-and-clusters
541 clusterCredentials: {}
543 # server: https://mycluster.example.com
547 # bearerToken: "<authentication token>"
550 # caData: "<base64 encoded certificate>"
552 # server: https://mycluster2.example.com
555 # namespaces: namespace1,namespace2
556 # clusterResources: true
558 # bearerToken: "<authentication token>"
561 # caData: "<base64 encoded certificate>"
562 # mycluster3-project-scoped:
563 # server: https://mycluster3.example.com
566 # project: my-project1
568 # bearerToken: "<authentication token>"
571 # caData: "<base64 encoded certificate>"
572 # mycluster4-sharded:
574 # server: https://mycluster4.example.com
578 # bearerToken: "<authentication token>"
581 # caData: "<base64 encoded certificate>"
583 # -- Repository credentials to be used as Templates for other repos
584 ## Creates a secret for each key/value specified below to create repository credentials
585 credentialTemplates: {}
586 # github-enterprise-creds-1:
587 # url: https://github.com/argoproj
589 # githubAppInstallationID: 2
590 # githubAppEnterpriseBaseUrl: https://ghe.example.com/api/v3
591 # githubAppPrivateKey: |
592 # -----BEGIN OPENSSH PRIVATE KEY-----
594 # -----END OPENSSH PRIVATE KEY-----
596 # url: https://github.com/argoproj
597 # password: my-password
598 # username: my-username
600 # url: git@github.com:argoproj-labs
602 # -----BEGIN OPENSSH PRIVATE KEY-----
604 # -----END OPENSSH PRIVATE KEY-----
606 # -- Annotations to be added to `configs.credentialTemplates` Secret
607 credentialTemplatesAnnotations: {}
608 # -- Repositories list to be used by applications
609 ## Creates a secret for each key/value specified below to create repositories
610 ## Note: the last example in the list would use a repository credential template, configured under "configs.credentialTemplates".
613 # url: https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts
617 # url: https://my-private-chart-repo.internal
620 # password: my-password
621 # username: my-username
623 # url: https://github.com/argoproj/private-repo
625 # -- Annotations to be added to `configs.repositories` Secret
626 repositoriesAnnotations: {}
627 # Argo CD sensitive data
628 # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#sensitive-data-and-sso-client-secrets
630 # -- Create the argocd-secret
632 # -- Labels to be added to argocd-secret
634 # -- Annotations to be added to argocd-secret
636 # -- Shared secret for authenticating GitHub webhook events
638 # -- Shared secret for authenticating GitLab webhook events
640 # -- Shared secret for authenticating BitbucketServer webhook events
641 bitbucketServerSecret: ""
642 # -- UUID for authenticating Bitbucket webhook events
644 # -- Shared secret for authenticating Gogs webhook events
648 # -- Shared secret username for authenticating Azure DevOps webhook events
650 # -- Shared secret password for authenticating Azure DevOps webhook events
652 # -- add additional secrets to be added to argocd-secret
653 ## Custom secrets. Useful for injecting SSO secrets into environment variables.
654 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#sensitive-data-and-sso-client-secrets
655 ## Note that all values must be non-empty.
657 # LDAP_PASSWORD: "mypassword"
659 # -- Bcrypt hashed admin password
660 ## Argo expects the password in the secret to be bcrypt hashed. You can create this hash with
661 ## `htpasswd -nbBC 10 "" $ARGO_PWD | tr -d ':\n' | sed 's/$2y/$2a/'`
662 argocdServerAdminPassword: ""
663 # -- Admin password modification time. Eg. `"2006-01-02T15:04:05Z"`
664 # @default -- `""` (defaults to current time)
665 argocdServerAdminPasswordMtime: ""
666 # -- Define custom [CSS styles] for your argo instance.
667 # This setting will automatically mount the provided CSS and reference it in the argo configuration.
668 # @default -- `""` (See [values.yaml])
669 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/custom-styles/
673 # background: linear-gradient(to bottom, #999, #777, #333, #222, #111);
675# -- Array of extra K8s manifests to deploy
676## Note: Supports use of custom Helm templates
678# - apiVersion: secrets-store.csi.x-k8s.io/v1
679# kind: SecretProviderClass
681# name: argocd-secrets-store
686# - objectName: "argocd"
687# objectType: "secretsmanager"
690# objectAlias: "client_id"
691# - path: "client_secret"
692# objectAlias: "client_secret"
696# objectName: client_id
697# - key: client_secret
698# objectName: client_secret
699# secretName: argocd-secrets-store
702# app.kubernetes.io/part-of: argocd
704## Application controller
706 # -- Application controller name string
707 name: application-controller
708 # -- The number of application controller pods to run.
709 # Additional replicas will cause sharding of managed clusters across number of replicas.
710 ## With dynamic cluster distribution turned on, sharding of the clusters will gracefully
711 ## rebalance if the number of replica's changes or one becomes unhealthy. (alpha)
713 # -- Enable dynamic cluster distribution (alpha)
714 # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution
715 ## This is done using a deployment instead of a statefulSet
716 ## When replicas are added or removed, the sharding algorithm is re-run to ensure that the
717 ## clusters are distributed according to the algorithm. If the algorithm is well-balanced,
718 ## like round-robin, then the shards will be well-balanced.
719 dynamicClusterDistribution: false
720 # -- Runtime class name for the application controller
721 # @default -- `""` (defaults to global.runtimeClassName)
723 # -- Application controller heartbeat time
724 # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution/#working-of-dynamic-distribution
726 # -- Maximum number of controller revisions that will be maintained in StatefulSet history
727 revisionHistoryLimit: 5
728 ## Application controller Pod Disruption Budget
729 ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
731 # -- Deploy a [PodDisruptionBudget] for the application controller
733 # -- Labels to be added to application controller pdb
735 # -- Annotations to be added to application controller pdb
737 # -- Number of pods that are available after eviction as number or percentage (eg.: 50%)
738 # @default -- `""` (defaults to 0 if not specified)
740 # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%).
741 ## Has higher precedence over `controller.pdb.minAvailable`
743 # -- Policy for evicting unhealthy (not ready) pods, either `IfHealthyBudget` or `AlwaysAllow`
744 ## Defaults to `IfHealthyBudget` if not set
745 unhealthyPodEvictionPolicy: ""
746 ## Application controller Vertical Pod Autoscaler
747 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
749 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the application controller
751 # -- Labels to be added to application controller vpa
753 # -- Annotations to be added to application controller vpa
755 # -- One of the VPA operation modes
756 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
757 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
759 # -- Controls how VPA computes the recommended resources for application controller container
760 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
762 # controlledResources: ["cpu", "memory"]
769 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
770 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
771 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
773 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
774 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
779 # durationSeconds: 10
780 ## Application controller image
782 # -- Repository to use for the application controller
783 # @default -- `""` (defaults to global.image.repository)
785 # -- Tag to use for the application controller
786 # @default -- `""` (defaults to global.image.tag)
788 # -- Image pull policy for the application controller
789 # @default -- `""` (defaults to global.image.imagePullPolicy)
791 # -- Secrets with credentials to pull images from a private registry
792 # @default -- `[]` (defaults to global.imagePullSecrets)
794 # -- Additional command line arguments to pass to application controller
796 # -- Environment variables to pass to application controller
798 # -- envFrom to pass to application controller
799 # @default -- `[]` (See [values.yaml])
802 # name: config-map-name
806 # -- Additional containers to be added to the application controller pod
807 ## Note: Supports use of custom Helm templates
809 # -- Init containers to add to the application controller pod
810 ## If your target Kubernetes cluster(s) require a custom credential (exec) plugin
811 ## you could use this (and the same in the server pod) to provide such executable
812 ## Ref: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#client-go-credential-plugins
813 ## Note: Supports use of custom Helm templates
815 # - name: download-tools
819 # - wget -qO /custom-tools/kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.2.7/kubelogin-linux-amd64.zip &&
820 # mkdir /custom-tools/tmp && unzip -d /custom-tools/tmp /custom-tools/kubelogin.zip &&
821 # mv /custom-tools/tmp/bin/linux_amd64/kubelogin /custom-tools/ && rm -rf custom-tools/tmp && rm /custom-tools/kubelogin.zip
823 # - mountPath: /custom-tools
826 # -- Additional volumeMounts to the application controller main container
828 # - mountPath: /usr/local/bin/kubelogin
832 # -- Additional volumes to the application controller pod
834 # - name: custom-tools
837 ## Application controller emptyDir volumes
839 # -- EmptyDir size limit for application controller
840 # @default -- `""` (defaults not set if not specified i.e. no size limit)
843 # -- Annotations for the application controller StatefulSet
844 statefulsetAnnotations: {}
845 # -- Labels for the application controller StatefulSet
846 statefulsetLabels: {}
847 # -- Annotations for the application controller Deployment
848 deploymentAnnotations: {}
849 # -- Labels for the application controller Deployment
851 # -- Annotations to be added to application controller pods
853 # -- Labels to be added to application controller pods
855 # -- Resource limits and requests for the application controller pods
864 # Application controller container ports
866 # -- Metrics container port
868 # -- Host Network for application controller pods
870 # -- [DNS configuration]
872 # -- Alternative DNS policy for application controller pods
873 dnsPolicy: "ClusterFirst"
874 # -- Application controller container-level security context
875 # @default -- See [values.yaml]
876 containerSecurityContext:
878 readOnlyRootFilesystem: true
879 allowPrivilegeEscalation: false
885 # Readiness probe for application controller
886 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
888 # -- Http path to use for the readiness probe
890 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
892 # -- Number of seconds after the container has started before [probe] is initiated
893 initialDelaySeconds: 10
894 # -- How often (in seconds) to perform the [probe]
896 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
898 # -- Number of seconds after which the [probe] times out
900 ## Liveness probe for the application controller.
901 ## Disabled by default, matching upstream: Argo CD removed this probe deliberately
902 ## (argoproj/argo-cd#9557) because restarting an overloaded controller usually makes
903 ## things worse. Enable only if you have a known failure mode (e.g. deadlock) where
904 ## a restart is the correct remediation, and size the thresholds generously.
905 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
907 # -- Enable Kubernetes liveness probe for Application controller
909 # -- Http path to use for the liveness probe
911 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
913 # -- Number of seconds after the container has started before [probe] is initiated
914 initialDelaySeconds: 10
915 # -- How often (in seconds) to perform the [probe]
917 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
919 # -- Number of seconds after which the [probe] times out
921 ## Startup probe for application controller (optional)
922 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
924 # -- Enable Kubernetes startup probe for application controller
926 # -- Http path to use for the startup probe
928 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
930 # -- Number of seconds after the container has started before [probe] is initiated
931 initialDelaySeconds: 10
932 # -- How often (in seconds) to perform the [probe]
934 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
936 # -- Number of seconds after which the [probe] times out
938 # -- terminationGracePeriodSeconds for container lifecycle hook
939 terminationGracePeriodSeconds: 30
940 # -- Priority class for the application controller pods
941 # @default -- `""` (defaults to global.priorityClassName)
942 priorityClassName: ""
944 # @default -- `{}` (defaults to global.nodeSelector)
946 # -- [Tolerations] for use with node taints
947 # @default -- `[]` (defaults to global.tolerations)
949 # -- Assign custom [affinity] rules to the deployment
950 # @default -- `{}` (defaults to global.affinity preset)
952 # -- Assign custom [TopologySpreadConstraints] rules to the application controller
953 # @default -- `[]` (defaults to global.topologySpreadConstraints)
954 ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
955 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
956 topologySpreadConstraints: []
958 # topologyKey: topology.kubernetes.io/zone
959 # whenUnsatisfiable: DoNotSchedule
961 # -- Automount API credentials for the Service Account into the pod.
962 automountServiceAccountToken: true
964 # -- Create a service account for the application controller
966 # -- Service account name
967 name: argocd-application-controller
968 # -- Annotations applied to created service account
970 # -- Labels applied to created service account
972 # -- Automount API credentials for the Service Account
973 automountServiceAccountToken: true
974 ## Application controller metrics configuration
976 # -- Deploy metrics service
979 # -- Enables additional labels in argocd_app_labels metric
981 # -- Additional labels
984 # -- Metrics service type
986 # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
988 # -- Metrics service annotations
990 # -- Metrics service labels
992 # -- Metrics service port
994 # -- Metrics service port name
995 portName: http-metrics
997 # -- Enable a prometheus ServiceMonitor
999 # -- Prometheus ServiceMonitor interval
1001 # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used.
1003 # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels.
1005 # -- Prometheus [RelabelConfigs] to apply to samples before scraping
1007 # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion
1008 metricRelabelings: []
1009 # -- Prometheus ServiceMonitor selector
1011 # prometheus: kube-prometheus
1013 # -- Prometheus ServiceMonitor scheme
1015 # -- Prometheus ServiceMonitor tlsConfig
1017 # -- Prometheus ServiceMonitor namespace
1018 namespace: "" # "monitoring"
1019 # -- Prometheus ServiceMonitor labels
1020 additionalLabels: {}
1021 # -- Prometheus ServiceMonitor annotations
1024 # -- Deploy a PrometheusRule for the application controller
1026 # -- PrometheusRule namespace
1027 namespace: "" # "monitoring"
1028 # -- PrometheusRule selector
1030 # prometheus: kube-prometheus
1032 # -- PrometheusRule labels
1033 additionalLabels: {}
1034 # -- PrometheusRule annotations
1036 # -- PrometheusRule.Spec for the application controller
1038 # - alert: ArgoAppMissing
1040 # absent(argocd_app_info) == 1
1043 # severity: critical
1045 # summary: "[Argo CD] No reported applications"
1047 # Argo CD has not reported any applications data for the past 15 minutes which
1048 # means that it must be down or not functioning properly. This needs to be
1049 # resolved for this cloud to continue to maintain state.
1050 # - alert: ArgoAppNotSynced
1052 # argocd_app_info{sync_status!="Synced"} == 1
1057 # summary: "[{{ $labels.name }}] Application not synchronized"
1059 # The application {{ $labels.name }} has not been synchronized for over
1060 # 12 hours which means that the state of this cloud has drifted away from the
1062 ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource.
1065 # -- Enable custom rules for the application controller's ClusterRole resource
1067 # -- List of custom rules for the application controller's ClusterRole resource
1069 ## Enable this and set the rules: to whatever custom rules you want for the Role resource.
1071 # -- List of custom rules for the application controller's Role resource
1073 # Default application controller's network policy
1075 # -- Default network policy rules used by application controller
1076 # @default -- `false` (defaults to global.networkPolicy.create)
1084 # -- Additional command line arguments to pass to the Dex server
1086 # -- Runtime class name for Dex
1087 # @default -- `""` (defaults to global.runtimeClassName)
1088 runtimeClassName: ""
1090 # -- Deploy metrics service
1093 # -- Metrics service annotations
1095 # -- Metrics service labels
1097 # -- Metrics service port name
1098 portName: http-metrics
1100 # -- Enable a prometheus ServiceMonitor
1102 # -- Prometheus ServiceMonitor interval
1104 # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels.
1106 # -- Prometheus [RelabelConfigs] to apply to samples before scraping
1108 # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion
1109 metricRelabelings: []
1110 # -- Prometheus ServiceMonitor selector
1112 # prometheus: kube-prometheus
1114 # -- Prometheus ServiceMonitor scheme
1116 # -- Prometheus ServiceMonitor tlsConfig
1118 # -- Prometheus ServiceMonitor namespace
1119 namespace: "" # "monitoring"
1120 # -- Prometheus ServiceMonitor labels
1121 additionalLabels: {}
1122 # -- Prometheus ServiceMonitor annotations
1124 ## Dex Pod Disruption Budget
1125 ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
1127 # -- Deploy a [PodDisruptionBudget] for the Dex server
1129 # -- Labels to be added to Dex server pdb
1131 # -- Annotations to be added to Dex server pdb
1133 # -- Number of pods that are available after eviction as number or percentage (eg.: 50%)
1134 # @default -- `""` (defaults to 0 if not specified)
1136 # -- Number of pods that are unavailble after eviction as number or percentage (eg.: 50%).
1137 ## Has higher precedence over `dex.pdb.minAvailable`
1139 # -- Policy for evicting unhealthy (not ready) pods, either `IfHealthyBudget` or `AlwaysAllow`
1140 ## Defaults to `IfHealthyBudget` if not set
1141 unhealthyPodEvictionPolicy: ""
1142 ## Dex Vertical Pod Autoscaler
1143 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
1145 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the Dex server
1147 # -- Labels to be added to Dex server vpa
1149 # -- Annotations to be added to Dex server vpa
1151 # -- One of the VPA operation modes
1152 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
1153 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
1155 # -- Controls how VPA computes the recommended resources for Dex server container
1156 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
1158 # controlledResources: ["cpu", "memory"]
1165 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
1166 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
1167 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
1169 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
1170 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
1175 # durationSeconds: 10
1178 # -- Dex image repository
1179 repository: cgr.dev/chainguard-private/dex
1181 tag: 2.45.1@sha256:efde42ded614a6282d5272e9c7975cd789a5d7d5d194cc60ce49677fda425c9b
1182 # -- Dex imagePullPolicy
1183 # @default -- `""` (defaults to global.image.imagePullPolicy)
1185 # -- Secrets with credentials to pull images from a private registry
1186 # @default -- `[]` (defaults to global.imagePullSecrets)
1187 imagePullSecrets: []
1188 # Argo CD init image that creates Dex config
1190 # -- Argo CD init image repository
1191 # @default -- `""` (defaults to global.image.repository)
1193 # -- Argo CD init image tag
1194 # @default -- `""` (defaults to global.image.tag)
1196 # -- Argo CD init image imagePullPolicy
1197 # @default -- `""` (defaults to global.image.imagePullPolicy)
1199 # -- Argo CD init image resources
1200 # @default -- `{}` (defaults to dex.resources)
1208 # -- Environment variables to pass to the Dex server
1210 # -- envFrom to pass to the Dex server
1211 # @default -- `[]` (See [values.yaml])
1214 # name: config-map-name
1218 # -- Additional containers to be added to the dex pod
1219 ## Note: Supports use of custom Helm templates
1221 # -- Init containers to add to the dex pod
1222 ## Note: Supports use of custom Helm templates
1224 # -- Additional volumeMounts to the dex main container
1226 # -- Additional volumes to the dex pod
1228 ## Dex server emptyDir volumes
1230 # -- EmptyDir size limit for Dex server
1231 # @default -- `""` (defaults not set if not specified i.e. no size limit)
1234 # TLS certificate configuration via Secret
1235 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#configuring-tls-to-argocd-dex-server
1236 ## Note: Issuing certificates via cert-manager in not supported right now because it's not possible to restart Dex automatically without extra controllers.
1238 # -- Create argocd-dex-server-tls secret
1240 # -- Labels to be added to argocd-dex-server-tls secret
1242 # -- Annotations to be added to argocd-dex-server-tls secret
1244 # -- Certificate authority. Required for self-signed certificates.
1246 # -- Certificate private key
1248 # -- Certificate data. Must contain SANs of Dex service (ie: argocd-dex-server, argocd-dex-server.argo-cd.svc)
1250 # -- Annotations to be added to the Dex server Deployment
1251 deploymentAnnotations: {}
1252 # -- Labels for the Dex server Deployment
1253 deploymentLabels: {}
1254 # -- Annotations to be added to the Dex server pods
1256 # -- Labels to be added to the Dex server pods
1258 # -- Resource limits and requests for dex
1267 # Dex container ports
1268 # NOTE: These ports are currently hardcoded and cannot be changed
1270 # -- HTTP container port
1272 # -- gRPC container port
1274 # -- Metrics container port
1276 # -- [DNS configuration]
1278 # -- Alternative DNS policy for Dex server pods
1279 dnsPolicy: "ClusterFirst"
1280 # -- Dex container-level security context
1281 # @default -- See [values.yaml]
1282 containerSecurityContext:
1285 readOnlyRootFilesystem: true
1286 allowPrivilegeEscalation: false
1288 type: RuntimeDefault
1292 ## Probes for Dex server
1293 ## Supported from Dex >= 2.28.0
1295 # -- Enable Kubernetes liveness probe for Dex >= 2.28.0
1297 # -- Http path to use for the liveness probe
1298 httpPath: /healthz/live
1299 # -- Http port to use for the liveness probe
1301 # -- Scheme to use for for the liveness probe (can be HTTP or HTTPS)
1303 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
1305 # -- Number of seconds after the container has started before [probe] is initiated
1306 initialDelaySeconds: 10
1307 # -- How often (in seconds) to perform the [probe]
1309 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
1311 # -- Number of seconds after which the [probe] times out
1314 # -- Enable Kubernetes readiness probe for Dex >= 2.28.0
1316 # -- Http path to use for the readiness probe
1317 httpPath: /healthz/ready
1318 # -- Http port to use for the readiness probe
1320 # -- Scheme to use for for the liveness probe (can be HTTP or HTTPS)
1322 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
1324 # -- Number of seconds after the container has started before [probe] is initiated
1325 initialDelaySeconds: 10
1326 # -- How often (in seconds) to perform the [probe]
1328 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
1330 # -- Number of seconds after which the [probe] times out
1332 ## Startup probe for Dex server (optional)
1333 ## Supported from Dex >= 2.28.0
1335 # -- Enable Kubernetes startup probe for Dex >= 2.28.0
1337 # -- Http path to use for the startup probe
1338 httpPath: /healthz/ready
1339 # -- Http port to use for the startup probe
1341 # -- Scheme to use for the startup probe (can be HTTP or HTTPS)
1343 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
1344 failureThreshold: 20
1345 # -- Number of seconds after the container has started before [probe] is initiated
1346 initialDelaySeconds: 10
1347 # -- How often (in seconds) to perform the [probe]
1349 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
1351 # -- Number of seconds after which the [probe] times out
1353 # -- terminationGracePeriodSeconds for container lifecycle hook
1354 terminationGracePeriodSeconds: 30
1355 # -- Automount API credentials for the Service Account into the pod.
1356 automountServiceAccountToken: true
1358 # -- Create dex service account
1360 # -- Dex service account name
1361 name: argocd-dex-server
1362 # -- Annotations applied to created service account
1364 # -- Automount API credentials for the Service Account
1365 automountServiceAccountToken: true
1366 # -- Service port for HTTP access
1367 servicePortHttp: 5556
1368 # -- Service port name for HTTP access
1369 servicePortHttpName: http
1370 # -- Service port for gRPC access
1371 servicePortGrpc: 5557
1372 # -- Service port name for gRPC access
1373 servicePortGrpcName: grpc
1374 # -- Service port for metrics access
1375 servicePortMetrics: 5558
1376 # -- Priority class for the dex pods
1377 # @default -- `""` (defaults to global.priorityClassName)
1378 priorityClassName: ""
1379 # -- [Node selector]
1380 # @default -- `{}` (defaults to global.nodeSelector)
1382 # -- [Tolerations] for use with node taints
1383 # @default -- `[]` (defaults to global.tolerations)
1385 # -- Assign custom [affinity] rules to the deployment
1386 # @default -- `{}` (defaults to global.affinity preset)
1388 # -- Assign custom [TopologySpreadConstraints] rules to dex
1389 # @default -- `[]` (defaults to global.topologySpreadConstraints)
1390 ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
1391 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
1392 topologySpreadConstraints: []
1394 # topologyKey: topology.kubernetes.io/zone
1395 # whenUnsatisfiable: DoNotSchedule
1397 # -- Deployment strategy to be added to the Dex server Deployment
1398 deploymentStrategy: {}
1399 # type: RollingUpdate
1402 # maxUnavailable: 25%
1404 # Default Dex server's network policy
1406 # -- Default network policy rules used by Dex server
1407 # @default -- `false` (defaults to global.networkPolicy.create)
1409 # DEPRECATED - Use configs.params to override
1410 # -- Dex log format. Either `text` or `json`
1411 # @default -- `""` (defaults to global.logging.format)
1413 # -- Dex log level. One of: `debug`, `info`, `warn`, `error`
1414 # @default -- `""` (defaults to global.logging.level)
1422 # -- Runtime class name for redis
1423 # @default -- `""` (defaults to global.runtimeClassName)
1424 runtimeClassName: ""
1425 ## Redis Pod Disruption Budget
1426 ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
1428 # -- Deploy a [PodDisruptionBudget] for the Redis
1430 # -- Labels to be added to Redis pdb
1432 # -- Annotations to be added to Redis pdb
1434 # -- Number of pods that are available after eviction as number or percentage (eg.: 50%)
1435 # @default -- `""` (defaults to 0 if not specified)
1437 # -- Number of pods that are unavailble after eviction as number or percentage (eg.: 50%).
1438 ## Has higher precedence over `redis.pdb.minAvailable`
1440 # -- Policy for evicting unhealthy (not ready) pods, either `IfHealthyBudget` or `AlwaysAllow`
1441 ## Defaults to `IfHealthyBudget` if not set
1442 unhealthyPodEvictionPolicy: ""
1443 ## Redis Vertical Pod Autoscaler
1444 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
1446 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the Redis
1448 # -- Labels to be added to Redis vpa
1450 # -- Annotations to be added to Redis vpa
1452 # -- One of the VPA operation modes
1453 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
1454 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
1456 # -- Controls how VPA computes the recommended resources for Redis container
1457 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
1459 # controlledResources: ["cpu", "memory"]
1466 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
1467 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
1468 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
1470 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
1471 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
1476 # durationSeconds: 10
1479 # -- Redis repository
1480 repository: cgr.dev/chainguard-private/redis
1482 ## Do not use 7.4.0 <= v < 8.0.0, otherwise you are no longer using an open source version of Redis
1483 tag: 8.10.1@sha256:570aa6fefcfdd3d9c1815b42329f739f59def73ea00b30818671eca56a91ead0
1484 # -- Redis image pull policy
1485 # @default -- `""` (defaults to global.image.imagePullPolicy)
1487 ## Prometheus redis-exporter sidecar
1489 # -- Enable Prometheus redis-exporter sidecar
1491 # -- Environment variables to pass to the Redis exporter
1493 ## Prometheus redis-exporter image
1495 # -- Repository to use for the redis-exporter
1496 repository: cgr.dev/chainguard-private/prometheus-redis-exporter
1497 # -- Tag to use for the redis-exporter
1498 tag: 1.91.1@sha256:91fc89d162c491cc4d04e8a3e1acbfb1df00c438831eabb0df375317eb3306eb
1499 # -- Image pull policy for the redis-exporter
1500 # @default -- `""` (defaults to global.image.imagePullPolicy)
1502 # -- Redis exporter security context
1503 # @default -- See [values.yaml]
1504 containerSecurityContext:
1506 readOnlyRootFilesystem: true
1507 allowPrivilegeEscalation: false
1509 type: RuntimeDefault
1513 ## Probes for Redis exporter (optional)
1514 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
1516 # -- Enable Kubernetes liveness probe for Redis exporter (optional)
1518 # -- Number of seconds after the container has started before [probe] is initiated
1519 initialDelaySeconds: 30
1520 # -- How often (in seconds) to perform the [probe]
1522 # -- Number of seconds after which the [probe] times out
1524 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
1526 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
1529 # -- Enable Kubernetes liveness probe for Redis exporter
1531 # -- Number of seconds after the container has started before [probe] is initiated
1532 initialDelaySeconds: 30
1533 # -- How often (in seconds) to perform the [probe]
1535 # -- Number of seconds after which the [probe] times out
1537 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
1539 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
1541 # -- Resource limits and requests for redis-exporter sidecar
1549 # -- Secrets with credentials to pull images from a private registry
1550 # @default -- `[]` (defaults to global.imagePullSecrets)
1551 imagePullSecrets: []
1552 # -- Additional command line arguments to pass to redis-server
1557 # -- Environment variables to pass to the Redis server
1559 # -- envFrom to pass to the Redis server
1560 # @default -- `[]` (See [values.yaml])
1563 # name: config-map-name
1567 ## Probes for Redis server (optional)
1568 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
1570 # -- Enable Kubernetes liveness probe for Redis server
1572 # -- Number of seconds after the container has started before [probe] is initiated
1573 initialDelaySeconds: 30
1574 # -- How often (in seconds) to perform the [probe]
1576 # -- Number of seconds after which the [probe] times out
1578 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
1580 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
1583 # -- Enable Kubernetes liveness probe for Redis server
1585 # -- Number of seconds after the container has started before [probe] is initiated
1586 initialDelaySeconds: 30
1587 # -- How often (in seconds) to perform the [probe]
1589 # -- Number of seconds after which the [probe] times out
1591 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
1593 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
1595 # -- Additional containers to be added to the redis pod
1596 ## Note: Supports use of custom Helm templates
1598 # -- Init containers to add to the redis pod
1599 ## Note: Supports use of custom Helm templates
1601 # -- Additional volumeMounts to the redis container
1603 # -- Additional volumes to the redis pod
1605 # -- Annotations to be added to the Redis server Deployment
1606 deploymentAnnotations: {}
1607 # -- Labels for the Redis server Deployment
1608 deploymentLabels: {}
1609 # -- Annotations to be added to the Redis server pods
1611 # -- Labels to be added to the Redis server pods
1613 # -- Resource limits and requests for redis
1622 # -- Redis pod-level security context
1623 # @default -- See [values.yaml]
1628 type: RuntimeDefault
1629 # Redis container ports
1631 # -- Redis container port
1633 # -- Metrics container port
1635 # -- Host Network for redis pods
1637 # -- [DNS configuration]
1639 # -- Alternative DNS policy for Redis server pods
1640 dnsPolicy: "ClusterFirst"
1641 # -- Redis container-level security context
1642 # @default -- See [values.yaml]
1643 containerSecurityContext:
1644 readOnlyRootFilesystem: true
1645 allowPrivilegeEscalation: false
1649 # -- Redis service port
1651 # -- Priority class for redis pods
1652 # @default -- `""` (defaults to global.priorityClassName)
1653 priorityClassName: ""
1654 # -- [Node selector]
1655 # @default -- `{}` (defaults to global.nodeSelector)
1657 # -- [Tolerations] for use with node taints
1658 # @default -- `[]` (defaults to global.tolerations)
1660 # -- Assign custom [affinity] rules to the deployment
1661 # @default -- `{}` (defaults to global.affinity preset)
1663 # -- Assign custom [TopologySpreadConstraints] rules to redis
1664 # @default -- `[]` (defaults to global.topologySpreadConstraints)
1665 ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
1666 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
1667 topologySpreadConstraints: []
1669 # topologyKey: topology.kubernetes.io/zone
1670 # whenUnsatisfiable: DoNotSchedule
1672 # -- terminationGracePeriodSeconds for container lifecycle hook
1673 terminationGracePeriodSeconds: 30
1674 # -- Automount API credentials for the Service Account into the pod.
1675 automountServiceAccountToken: true
1677 # -- Create a service account for the redis pod
1679 # -- Service account name for redis pod
1681 # -- Annotations applied to created service account
1683 # -- Automount API credentials for the Service Account
1684 automountServiceAccountToken: false
1686 # -- Redis service annotations
1688 # -- Additional redis service labels
1691 # -- Deploy metrics service
1693 # Redis metrics service configuration
1695 # -- Metrics service type
1697 # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
1699 # -- Metrics service annotations
1701 # -- Metrics service labels
1703 # -- Metrics service port
1705 # -- Metrics service port name
1706 portName: http-metrics
1708 # -- Enable a prometheus ServiceMonitor
1710 # -- Interval at which metrics should be scraped
1712 # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels.
1714 # -- Prometheus [RelabelConfigs] to apply to samples before scraping
1716 # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion
1717 metricRelabelings: []
1718 # -- Prometheus ServiceMonitor selector
1720 # prometheus: kube-prometheus
1722 # -- Prometheus ServiceMonitor scheme
1724 # -- Prometheus ServiceMonitor tlsConfig
1726 # -- Prometheus ServiceMonitor namespace
1727 namespace: "" # "monitoring"
1728 # -- Prometheus ServiceMonitor labels
1729 additionalLabels: {}
1730 # -- Prometheus ServiceMonitor annotations
1732 # Default redis's network policy
1734 # -- Default network policy rules used by redis
1735 # @default -- `false` (defaults to global.networkPolicy.create)
1737## Redis-HA subchart replaces custom redis deployment when `redis-ha.enabled=true`
1738# Ref: https://github.com/DandyDeveloper/charts/blob/master/charts/redis-ha/values.yaml
1740 # -- Enables the Redis HA subchart and disables the custom Redis single node deployment
1744 # -- Redis repository
1745 repository: ecr-public.aws.com/docker/library/redis
1747 ## Do not use 7.4.0 <= v < 8.0.0, otherwise you are no longer using an open source version of Redis
1748 ## Runs ahead of the upstream HA manifests' pin: the redis 8.2.x line is only built on Alpine 3.22,
1749 ## whose OpenSSL carries known vulnerabilities (GHSA-5p3w-hgjv-f6q3 report); 8.6.x is the patched base.
1751 ## Prometheus redis-exporter sidecar
1753 # -- Enable Prometheus redis-exporter sidecar
1755 # -- Repository to use for the redis-exporter
1756 image: ghcr.io/oliver006/redis_exporter
1757 # -- Tag to use for the redis-exporter
1760 # -- Configures persistence on Redis nodes
1762 ## Redis specific configuration options
1764 # -- Redis convention for naming the cluster group: must match `^[\\w-\\.]+$` and can be templated
1765 masterGroupName: argocd
1766 # -- Any valid redis config options in this section will be applied to each server (see `redis-ha` chart)
1767 # @default -- See [values.yaml]
1769 # -- Will save the DB if both the given number of seconds and the given number of write operations against the DB occurred. `""` is disabled
1770 # @default -- `'""'`
1772 ## Redis sentinel specific configuration options
1774 # -- Sentinel container lifecycle hooks. The default `postStart` hook resets the sentinel state after a rolling update to prevent high CPU usage
1775 # @default -- See [values.yaml]
1779 ## Note: the reset command hardcodes the master group name `argocd`. If you override `redis-ha.redis.masterGroupName`, you must override this hook to match.
1783 - 'sleep 30; redis-cli -p 26379 sentinel reset argocd'
1784 ## Enables a HA Proxy for better LoadBalancing / Sentinel Master support. Automatically proxies to Redis master.
1786 # -- Enabled HAProxy LoadBalancing/Proxy
1788 # -- Custom labels for the haproxy pod. This is relevant for Argo CD CLI.
1790 app.kubernetes.io/name: argocd-redis-ha-haproxy
1792 # -- HAProxy Image Repository
1793 repository: ecr-public.aws.com/docker/library/haproxy
1795 # -- HAProxy enable prometheus metric scraping
1797 # -- Whether the haproxy pods should be forced to run on separate nodes.
1798 hardAntiAffinity: true
1799 # -- Additional affinities to add to the haproxy pods.
1800 additionalAffinities: {}
1801 # -- Assign custom [affinity] rules to the haproxy pods.
1803 # -- [Tolerations] for use with node taints for haproxy pods.
1805 # -- HAProxy container-level security context
1806 # @default -- See [values.yaml]
1807 containerSecurityContext:
1808 readOnlyRootFilesystem: true
1809 # -- Configures redis-ha with AUTH
1811 # -- Existing Secret to use for redis-ha authentication.
1812 # By default the redis-secret-init Job is generating this Secret.
1813 existingSecret: argocd-redis
1814 # -- Whether the Redis server pods should be forced to run on separate nodes.
1815 hardAntiAffinity: true
1816 # -- Additional affinities to add to the Redis server pods.
1817 additionalAffinities: {}
1818 # -- Assign custom [affinity] rules to the Redis pods.
1820 # -- [Tolerations] for use with node taints for Redis pods.
1822 # -- Assign custom [TopologySpreadConstraints] rules to the Redis pods.
1823 ## https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
1824 topologySpreadConstraints:
1825 # -- Enable Redis HA topology spread constraints
1827 # -- Max skew of pods tolerated
1828 # @default -- `""` (defaults to `1`)
1830 # -- Topology key for spread
1831 # @default -- `""` (defaults to `topology.kubernetes.io/zone`)
1833 # -- Enforcement policy, hard or soft
1834 # @default -- `""` (defaults to `ScheduleAnyway`)
1835 whenUnsatisfiable: ""
1836 # -- Redis HA statefulset container-level security context
1837 # @default -- See [values.yaml]
1838 containerSecurityContext:
1839 readOnlyRootFilesystem: true
1840# External Redis parameters
1842 # -- External Redis server host
1844 # -- External Redis username
1846 # -- External Redis password
1848 # -- External Redis server port
1850 # -- 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.
1851 # When it's set, the `externalRedis.username` and `externalRedis.password` parameters are ignored
1853 # -- External Redis Secret annotations
1854 secretAnnotations: {}
1856 # -- Enable Redis secret initialization. If disabled, secret must be provisioned by alternative methods
1858 # -- Redis secret-init name
1859 name: redis-secret-init
1861 # -- Repository to use for the Redis secret-init Job
1862 # @default -- `""` (defaults to global.image.repository)
1863 repository: "" # defaults to global.image.repository
1864 # -- Tag to use for the Redis secret-init Job
1865 # @default -- `""` (defaults to global.image.tag)
1866 tag: "" # defaults to global.image.tag
1867 # -- Image pull policy for the Redis secret-init Job
1868 # @default -- `""` (defaults to global.image.imagePullPolicy)
1869 imagePullPolicy: "" # IfNotPresent
1870 # -- Additional command line arguments for the Redis secret-init Job
1872 # -- Secrets with credentials to pull images from a private registry
1873 # @default -- `[]` (defaults to global.imagePullSecrets)
1874 imagePullSecrets: []
1875 # -- Runtime class name for the Redis secret-init Job
1876 # @default -- `""` (defaults to global.runtimeClassName)
1877 runtimeClassName: ""
1878 # -- Annotations to be added to the Redis secret-init Job
1880 # -- Annotations to be added to the Redis secret-init Job
1882 # -- Labels to be added to the Redis secret-init Job
1884 # -- Resource limits and requests for Redis secret-init Job
1893 # -- Application controller container-level security context
1894 # @default -- See [values.yaml]
1895 containerSecurityContext:
1896 allowPrivilegeEscalation: false
1900 readOnlyRootFilesystem: true
1903 type: RuntimeDefault
1904 # -- Redis secret-init Job pod-level security context
1907 # -- Create a service account for the redis pod
1909 # -- Service account name for redis pod
1911 # -- Annotations applied to created service account
1913 # -- Automount API credentials for the Service Account
1914 automountServiceAccountToken: true
1915 # -- Priority class for Redis secret-init Job
1916 # @default -- `""` (defaults to global.priorityClassName)
1917 priorityClassName: ""
1918 # -- Host Network for redis-secret-init pods
1920 # -- [DNS configuration]
1922 # -- Alternative DNS policy for Redis secret-init Job
1923 dnsPolicy: "ClusterFirst"
1924 # -- Assign custom [affinity] rules to the Redis secret-init Job
1926 # -- Node selector to be added to the Redis secret-init Job
1927 # @default -- `{}` (defaults to global.nodeSelector)
1929 # -- Tolerations to be added to the Redis secret-init Job
1930 # @default -- `[]` (defaults to global.tolerations)
1934 # -- Argo CD server name
1936 # -- The number of server pods to run
1938 # -- Runtime class name for the Argo CD server
1939 # @default -- `""` (defaults to global.runtimeClassName)
1940 runtimeClassName: ""
1941 ## Argo CD server Horizontal Pod Autoscaler
1943 # -- Enable Horizontal Pod Autoscaler ([HPA]) for the Argo CD server
1945 # -- Minimum number of replicas for the Argo CD server [HPA]
1947 # -- Maximum number of replicas for the Argo CD server [HPA]
1949 # -- Average CPU utilization percentage for the Argo CD server [HPA]
1950 targetCPUUtilizationPercentage: 50
1951 # -- Average memory utilization percentage for the Argo CD server [HPA]
1952 targetMemoryUtilizationPercentage: 50
1953 # -- Configures the scaling behavior of the target in both Up and Down directions.
1956 # stabilizationWindowSeconds: 300
1960 # periodSeconds: 180
1962 # stabilizationWindowSeconds: 300
1967 # -- Configures custom HPA metrics for the Argo CD server
1968 # Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
1970 ## Argo CD server Pod Disruption Budget
1971 ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
1973 # -- Deploy a [PodDisruptionBudget] for the Argo CD server
1975 # -- Labels to be added to Argo CD server pdb
1977 # -- Annotations to be added to Argo CD server pdb
1979 # -- Number of pods that are available after eviction as number or percentage (eg.: 50%)
1980 # @default -- `""` (defaults to 0 if not specified)
1982 # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%).
1983 ## Has higher precedence over `server.pdb.minAvailable`
1985 # -- Policy for evicting unhealthy (not ready) pods, either `IfHealthyBudget` or `AlwaysAllow`
1986 ## Defaults to `IfHealthyBudget` if not set
1987 unhealthyPodEvictionPolicy: ""
1988 ## Argo CD server Vertical Pod Autoscaler
1989 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
1991 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the Argo CD server
1993 # -- Labels to be added to Argo CD server vpa
1995 # -- Annotations to be added to Argo CD server vpa
1997 # -- One of the VPA operation modes
1998 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
1999 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
2001 # -- Controls how VPA computes the recommended resources for Argo CD server container
2002 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
2004 # controlledResources: ["cpu", "memory"]
2011 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
2012 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
2013 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
2015 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
2016 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
2021 # durationSeconds: 10
2022 ## Argo CD server image
2024 # -- Repository to use for the Argo CD server
2025 # @default -- `""` (defaults to global.image.repository)
2026 repository: "" # defaults to global.image.repository
2027 # -- Tag to use for the Argo CD server
2028 # @default -- `""` (defaults to global.image.tag)
2029 tag: "" # defaults to global.image.tag
2030 # -- Image pull policy for the Argo CD server
2031 # @default -- `""` (defaults to global.image.imagePullPolicy)
2032 imagePullPolicy: "" # IfNotPresent
2033 # -- Secrets with credentials to pull images from a private registry
2034 # @default -- `[]` (defaults to global.imagePullSecrets)
2035 imagePullSecrets: []
2036 # -- Additional command line arguments to pass to Argo CD server
2038 # -- Environment variables to pass to Argo CD server
2040 # -- envFrom to pass to Argo CD server
2041 # @default -- `[]` (See [values.yaml])
2044 # name: config-map-name
2048 # -- Specify postStart and preStop lifecycle hooks for your argo-cd-server container
2050 ## Argo CD extensions
2051 ## This function in tech preview stage, do expect instability or breaking changes in newer versions.
2052 ## Ref: https://github.com/argoproj-labs/argocd-extension-installer
2053 ## When you enable extensions, you need to configure RBAC of logged in Argo CD user.
2054 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/rbac/#the-extensions-resource
2056 # -- Enable support for Argo CD extensions
2058 ## Argo CD extension installer image
2060 # -- Repository to use for extension installer image
2061 repository: cgr.dev/chainguard-private/argocd-extension-installer
2062 # -- Tag to use for extension installer image
2063 tag: 1.1.0@sha256:231d8fbd90f4371f1a1e489687c7610d3144af8e7ffed58bed0e57ee8314804d
2064 # -- Image pull policy for extensions
2065 # @default -- `""` (defaults to global.image.imagePullPolicy)
2067 # -- Extensions for Argo CD
2068 # @default -- `[]` (See [values.yaml])
2069 ## Ref: https://github.com/argoproj-labs/argocd-extension-metrics#install-ui-extension
2071 # - name: extension-metrics
2073 # - name: EXTENSION_URL
2074 # value: https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension.tar.gz
2075 # - name: EXTENSION_CHECKSUM_URL
2076 # value: https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension_checksums.txt
2078 # -- Server UI extensions container-level security context
2079 # @default -- See [values.yaml]
2080 containerSecurityContext:
2082 readOnlyRootFilesystem: true
2083 allowPrivilegeEscalation: false
2086 type: RuntimeDefault
2090 # -- Resource limits and requests for the argocd-extensions container
2098 # -- Additional containers to be added to the server pod
2099 ## Note: Supports use of custom Helm templates
2101 # - name: my-sidecar
2102 # image: nginx:latest
2103 # - name: lemonldap-ng-controller
2104 # image: lemonldapng/lemonldap-ng-controller:0.2.0
2106 # - /lemonldap-ng-controller
2107 # - --alsologtostderr
2108 # - --configmap=$(POD_NAMESPACE)/lemonldap-ng-configuration
2113 # fieldPath: metadata.name
2114 # - name: POD_NAMESPACE
2117 # fieldPath: metadata.namespace
2119 # - name: copy-portal-skins
2120 # mountPath: /srv/var/lib/lemonldap-ng/portal/skins
2122 # -- Init containers to add to the server pod
2123 ## If your target Kubernetes cluster(s) require a custom credential (exec) plugin
2124 ## you could use this (and the same in the application controller pod) to provide such executable
2125 ## Ref: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#client-go-credential-plugins
2127 # - name: download-tools
2131 # - wget -qO /custom-tools/kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.2.7/kubelogin-linux-amd64.zip &&
2132 # mkdir /custom-tools/tmp && unzip -d /custom-tools/tmp /custom-tools/kubelogin.zip &&
2133 # mv /custom-tools/tmp/bin/linux_amd64/kubelogin /custom-tools/ && rm -rf custom-tools/tmp && rm /custom-tools/kubelogin.zip
2135 # - mountPath: /custom-tools
2136 # name: custom-tools
2138 # -- Additional volumeMounts to the server main container
2140 # - mountPath: /usr/local/bin/kubelogin
2141 # name: custom-tools
2142 # subPath: kubelogin
2144 # -- Additional volumes to the server pod
2146 # - name: custom-tools
2149 ## Argo CD server emptyDir volumes
2151 # -- EmptyDir size limit for the Argo CD server
2152 # @default -- `""` (defaults not set if not specified i.e. no size limit)
2155 # -- Annotations to be added to server Deployment
2156 deploymentAnnotations: {}
2157 # -- Labels for the server Deployment
2158 deploymentLabels: {}
2159 # -- Annotations to be added to server pods
2161 # -- Labels to be added to server pods
2163 # -- Resource limits and requests for the Argo CD server
2172 # Server container ports
2174 # -- Server container port
2176 # -- Metrics container port
2178 # -- Host Network for Server pods
2180 # -- [DNS configuration]
2182 # -- Alternative DNS policy for Server pods
2183 dnsPolicy: "ClusterFirst"
2184 # -- Server container-level security context
2185 # @default -- See [values.yaml]
2186 containerSecurityContext:
2188 readOnlyRootFilesystem: true
2189 allowPrivilegeEscalation: false
2191 type: RuntimeDefault
2195 ## Readiness and liveness probes for default backend
2196 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
2198 # -- Enable Kubernetes readiness probe for default backend
2200 # -- Http path to use for the readiness probe
2202 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
2204 # -- Number of seconds after the container has started before [probe] is initiated
2205 initialDelaySeconds: 10
2206 # -- How often (in seconds) to perform the [probe]
2208 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
2210 # -- Number of seconds after which the [probe] times out
2213 # -- Enable Kubernetes liveness probe for default backend
2215 # -- Http path to use for the liveness probe
2216 httpPath: /healthz?full=true
2217 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
2219 # -- Number of seconds after the container has started before [probe] is initiated
2220 initialDelaySeconds: 10
2221 # -- How often (in seconds) to perform the [probe]
2223 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
2225 # -- Number of seconds after which the [probe] times out
2227 ## Startup probe for Argo CD server (optional)
2228 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
2230 # -- Enable Kubernetes startup probe for Argo CD server
2232 # -- Http path to use for the startup probe
2234 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
2235 failureThreshold: 20
2236 # -- Number of seconds after the container has started before [probe] is initiated
2237 initialDelaySeconds: 10
2238 # -- How often (in seconds) to perform the [probe]
2240 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
2242 # -- Number of seconds after which the [probe] times out
2244 # -- terminationGracePeriodSeconds for container lifecycle hook
2245 terminationGracePeriodSeconds: 30
2246 # -- Priority class for the Argo CD server pods
2247 # @default -- `""` (defaults to global.priorityClassName)
2248 priorityClassName: ""
2249 # -- [Node selector]
2250 # @default -- `{}` (defaults to global.nodeSelector)
2252 # -- [Tolerations] for use with node taints
2253 # @default -- `[]` (defaults to global.tolerations)
2255 # -- Assign custom [affinity] rules to the deployment
2256 # @default -- `{}` (defaults to global.affinity preset)
2258 # -- Assign custom [TopologySpreadConstraints] rules to the Argo CD server
2259 # @default -- `[]` (defaults to global.topologySpreadConstraints)
2260 ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
2261 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
2262 topologySpreadConstraints: []
2264 # topologyKey: topology.kubernetes.io/zone
2265 # whenUnsatisfiable: DoNotSchedule
2267 # -- Deployment strategy to be added to the server Deployment
2268 deploymentStrategy: {}
2269 # type: RollingUpdate
2272 # maxUnavailable: 25%
2274 # TLS certificate configuration via cert-manager
2275 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#tls-certificates-used-by-argocd-server
2277 # -- Deploy a Certificate resource (requires cert-manager)
2279 # -- Certificate primary domain (commonName)
2280 # @default -- `""` (defaults to global.domain)
2282 # -- Certificate Subject Alternate Names (SANs)
2284 # -- The requested 'duration' (i.e. lifetime) of the certificate.
2285 # @default -- `""` (defaults to 2160h = 90d if not specified)
2286 ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal
2288 # -- How long before the expiry a certificate should be renewed.
2289 # @default -- `""` (defaults to 360h = 15d if not specified)
2290 ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal
2292 # Certificate issuer
2293 ## Ref: https://cert-manager.io/docs/concepts/issuer
2295 # -- Certificate issuer group. Set if using an external issuer. Eg. `cert-manager.io`
2297 # -- Certificate issuer kind. Either `Issuer` or `ClusterIssuer`
2299 # -- Certificate issuer name. Eg. `letsencrypt`
2301 # Private key of the certificate
2303 # -- Rotation policy of private key when certificate is re-issued. Either: `Never` or `Always`
2304 rotationPolicy: Never
2305 # -- The private key cryptography standards (PKCS) encoding for private key. Either: `PCKS1` or `PKCS8`
2307 # -- Algorithm used to generate certificate private key. One of: `RSA`, `Ed25519` or `ECDSA`
2309 # -- Key bit size of the private key. If algorithm is set to `Ed25519`, size is ignored.
2311 # -- Annotations to be applied to the Server Certificate
2313 # -- Usages for the certificate
2314 ### Ref: https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.KeyUsage
2316 # -- Annotations that allow the certificate to be composed from data residing in existing Kubernetes Resources
2317 secretTemplateAnnotations: {}
2318 # TLS certificate configuration via Secret
2319 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#tls-certificates-used-by-argocd-server
2321 # -- Create argocd-server-tls secret
2323 # -- Annotations to be added to argocd-server-tls secret
2325 # -- Labels to be added to argocd-server-tls secret
2327 # -- Private Key of the certificate
2329 # -- Certificate data
2331 ## Server service configuration
2333 # -- Server service annotations
2335 # -- Server service labels
2337 # -- Server service type
2339 # -- Server service http port for NodePort service type (only if `server.service.type` is set to "NodePort")
2341 # -- (int) Server service http2 port for NodePort service type (only if `server.service.servicePortHttp2` is set and `server.service.type` is set to "NodePort")
2342 # @default -- `nil` (a random node port is assigned)
2344 # -- Server service https port for NodePort service type (only if `server.service.type` is set to "NodePort")
2345 nodePortHttps: 30443
2346 # -- Server service http port
2348 # -- (int) Server service cleartext http2 (h2c) port, targeting the same container port as `servicePortHttp`
2349 # @default -- `nil` (disabled)
2350 ## The Argo CD server serves the web UI (HTTP/1.1) and gRPC (HTTP/2) on a single container port, and
2351 ## `appProtocol` is single-valued per service port. Set this to expose a second port advertising the
2352 ## h2c backend protocol, for Gateway API implementations that do not infer it from the route type.
2353 ## Leave empty to disable. Only rendered when `configs.params."server.insecure"` is `true`, since
2354 ## h2c is not applicable to a TLS backend.
2356 # -- Server service https port
2357 servicePortHttps: 443
2358 # -- Server service http port name, can be used to route traffic via istio
2359 servicePortHttpName: http
2360 # -- Server service http2 port name, can be used to route traffic via istio
2361 servicePortHttp2Name: http2
2362 # -- Server service https port name, can be used to route traffic via istio
2363 servicePortHttpsName: https
2364 # -- Server service http2 port appProtocol, e.g. `kubernetes.io/h2c`. Implementations that select the
2365 # protocol from the port name instead do not need it
2366 ## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol
2367 servicePortHttp2AppProtocol: ""
2368 # -- Server service https port appProtocol
2369 ## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol
2370 servicePortHttpsAppProtocol: ""
2371 # -- The class of the load balancer implementation
2372 loadBalancerClass: ""
2373 # -- LoadBalancer will get created with the IP specified in this field
2375 # -- Source IP ranges to allow access to service from
2376 ## EKS Ref: https://repost.aws/knowledge-center/eks-cidr-ip-address-loadbalancer
2377 ## GKE Ref: https://cloud.google.com/kubernetes-engine/docs/concepts/network-overview#limit-connectivity-ext-lb
2378 loadBalancerSourceRanges: []
2379 # -- Server service external IPs
2381 # -- Denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints
2382 ## Ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
2383 externalTrafficPolicy: Cluster
2384 # -- Used to maintain session affinity. Supports `ClientIP` and `None`
2385 ## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
2386 sessionAffinity: None
2387 ## Server metrics service configuration
2389 # -- Deploy metrics service
2392 # -- Metrics service type
2394 # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
2396 # -- Metrics service annotations
2398 # -- Metrics service labels
2400 # -- Metrics service port
2402 # -- Metrics service port name
2403 portName: http-metrics
2405 # -- Enable a prometheus ServiceMonitor
2407 # -- Prometheus ServiceMonitor interval
2409 # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used.
2411 # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels.
2413 # -- Prometheus [RelabelConfigs] to apply to samples before scraping
2415 # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion
2416 metricRelabelings: []
2417 # -- Prometheus ServiceMonitor selector
2419 # prometheus: kube-prometheus
2421 # -- Prometheus ServiceMonitor scheme
2423 # -- Prometheus ServiceMonitor tlsConfig
2425 # -- Prometheus ServiceMonitor namespace
2426 namespace: "" # monitoring
2427 # -- Prometheus ServiceMonitor labels
2428 additionalLabels: {}
2429 # -- Prometheus ServiceMonitor annotations
2431 # -- Automount API credentials for the Service Account into the pod.
2432 automountServiceAccountToken: true
2434 # -- Create server service account
2436 # -- Server service account name
2438 # -- Annotations applied to created service account
2440 # -- Labels applied to created service account
2442 # -- Automount API credentials for the Service Account
2443 automountServiceAccountToken: true
2444 # Argo CD server ingress configuration
2446 # -- Enable an ingress resource for the Argo CD server
2448 # -- Specific implementation for ingress controller. One of `generic`, `aws` or `gke`
2449 ## Additional configuration might be required in related configuration sections
2451 # -- Additional ingress labels
2453 # -- Additional ingress annotations
2454 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#option-1-ssl-passthrough
2456 # nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
2457 # nginx.ingress.kubernetes.io/ssl-passthrough: "true"
2459 # -- Defines which ingress controller will implement the resource
2460 ingressClassName: ""
2461 # -- Argo CD server hostname
2462 # @default -- `""` (defaults to global.domain)
2464 # -- The path to Argo CD server
2466 # -- Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific`
2468 # -- Enable TLS configuration for the hostname defined at `server.ingress.hostname`
2469 ## TLS certificate will be retrieved from a TLS secret `argocd-server-tls`
2470 ## You can create this secret via `certificate` or `certificateSecret` option
2472 # -- The list of additional hostnames to be covered by ingress record
2473 # @default -- `[]` (See [values.yaml])
2475 # - name: argocd.example.com
2478 # -- Additional ingress paths
2479 # @default -- `[]` (See [values.yaml])
2480 ## Note: Supports use of custom Helm templates
2486 # name: ssl-redirect
2488 # name: use-annotation
2490 # -- Additional ingress rules
2491 # @default -- `[]` (See [values.yaml])
2492 ## Note: Supports use of custom Helm templates
2500 # name: '{{ include "argo-cd.server.fullname" . }}'
2502 # name: '{{ .Values.server.service.servicePortHttpsName }}'
2504 # -- Additional TLS configuration
2505 # @default -- `[]` (See [values.yaml])
2508 # - argocd.example.com
2509 # secretName: your-certificate-name
2511 # AWS specific options for Application Load Balancer
2512 # Applies only when `serv.ingress.controller` is set to `aws`
2513 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#aws-application-load-balancers-albs-and-classic-elb-http-mode
2515 # -- Backend protocol version for the AWS ALB gRPC service
2516 ## This tells AWS to send traffic from the ALB using gRPC.
2517 ## For more information: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html#health-check-settings
2518 backendProtocolVersion: GRPC
2519 # -- Service type for the AWS ALB gRPC service
2520 ## Can be of type NodePort or ClusterIP depending on which mode you are running.
2521 ## Instance mode needs type NodePort, IP mode needs type ClusterIP
2522 ## Ref: https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.2/how-it-works/#ingress-traffic
2523 serviceType: NodePort
2524 # -- Annotations for the AWS ALB gRPC service
2525 ## Allows adding custom annotations to the gRPC service for integrations like DataDog, Prometheus, etc.
2526 serviceAnnotations: {}
2527 # Google specific options for Google Application Load Balancer
2528 # Applies only when `server.ingress.controller` is set to `gke`
2529 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#google-cloud-load-balancers-with-kubernetes-ingress
2531 # -- Google [BackendConfig] resource, for use with the GKE Ingress Controller
2532 # @default -- `{}` (See [values.yaml])
2533 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters
2537 # oauthclientCredentials:
2538 # secretName: argocd-secret
2540 # -- Google [FrontendConfig] resource, for use with the GKE Ingress Controller
2541 # @default -- `{}` (See [values.yaml])
2542 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters
2546 # responseCodeName: RESPONSE_CODE
2548 # Managed GKE certificate for ingress hostname
2550 # -- Create ManagedCertificate resource and annotations for Google Load balancer
2551 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/managed-certs
2553 # -- Additional domains for ManagedCertificate resource
2555 # - argocd.example.com
2556 # Dedicated gRPC ingress for ingress controllers that supports only single backend protocol per Ingress resource
2557 # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#option-2-multiple-ingress-objects-and-hosts
2559 # -- Enable an ingress resource for the Argo CD server for dedicated [gRPC-ingress]
2561 # -- Additional ingress annotations for dedicated [gRPC-ingress]
2563 # -- Additional ingress labels for dedicated [gRPC-ingress]
2565 # -- Defines which ingress controller will implement the resource [gRPC-ingress]
2566 ingressClassName: ""
2567 # -- Argo CD server hostname for dedicated [gRPC-ingress]
2568 # @default -- `""` (defaults to grpc.`server.ingress.hostname`)
2570 # -- Argo CD server ingress path for dedicated [gRPC-ingress]
2572 # -- Ingress path type for dedicated [gRPC-ingress]. One of `Exact`, `Prefix` or `ImplementationSpecific`
2574 # -- Enable TLS configuration for the hostname defined at `server.ingressGrpc.hostname`
2575 ## TLS certificate will be retrieved from a TLS secret with name: `argocd-server-grpc-tls`
2577 # -- The list of additional hostnames to be covered by ingress record
2578 # @default -- `[]` (See [values.yaml])
2580 # - name: grpc.argocd.example.com
2583 # -- Additional ingress paths for dedicated [gRPC-ingress]
2584 # @default -- `[]` (See [values.yaml])
2585 ## Note: Supports use of custom Helm templates
2591 # name: ssl-redirect
2593 # name: use-annotation
2595 # -- Additional ingress rules
2596 # @default -- `[]` (See [values.yaml])
2597 ## Note: Supports use of custom Helm templates
2605 # name: '{{ include "argo-cd.server.fullname" . }}'
2607 # name: '{{ .Values.server.service.servicePortHttpName }}'
2609 # -- Additional TLS configuration for dedicated [gRPC-ingress]
2610 # @default -- `[]` (See [values.yaml])
2612 # - secretName: your-certificate-name
2614 # - argocd.example.com
2615 # Create a OpenShift Route with SSL passthrough for UI and CLI
2616 # Consider setting 'hostname' e.g. https://argocd.apps-crc.testing/ using your Default Ingress Controller Domain
2617 # Find your domain with: kubectl describe --namespace=openshift-ingress-operator ingresscontroller/default | grep Domain:
2618 # If 'hostname' is an empty string "" OpenShift will create a hostname for you.
2620 # -- Enable an OpenShift Route for the Argo CD server
2622 # -- Openshift Route annotations
2624 # -- Hostname of OpenShift Route
2626 # -- Termination type of Openshift Route
2627 termination_type: passthrough
2628 # -- Termination policy of Openshift Route
2629 termination_policy: None
2630 # Gateway API HTTPRoute configuration
2631 # NOTE: Gateway API support is in EXPERIMENTAL status
2632 # Support depends on your Gateway controller implementation
2633 # Some controllers may require additional configuration (e.g., BackendTLSPolicy for HTTPS backends)
2634 # Refer to https://gateway-api.sigs.k8s.io/implementations/ for controller-specific details
2636 # -- Enable HTTPRoute resource for Argo CD server (Gateway API)
2638 # -- Additional HTTPRoute labels
2640 # -- Additional HTTPRoute annotations
2642 # -- Gateway API parentRefs for the HTTPRoute
2643 ## Must reference an existing Gateway
2644 # @default -- `[]` (See [values.yaml])
2646 # - name: example-gateway
2647 # namespace: example-gateway-namespace
2648 # sectionName: https
2649 # -- List of hostnames for the HTTPRoute
2650 # @default -- `[]` (See [values.yaml])
2652 # - argocd.example.com
2653 # -- HTTPRoute rules configuration
2654 # @default -- `[]` (See [values.yaml])
2661 # - type: RequestHeaderModifier
2662 # requestHeaderModifier:
2664 # - name: X-Custom-Header
2665 # value: custom-value
2668 # backendRequest: 2s
2669 # Gateway API GRPCRoute configuration
2670 # NOTE: Gateway API support is in EXPERIMENTAL status
2671 # Support depends on your Gateway controller implementation
2672 # Refer to https://gateway-api.sigs.k8s.io/implementations/ for controller-specific details
2674 # -- Enable GRPCRoute resource for Argo CD server (Gateway API)
2676 # -- Additional GRPCRoute labels
2678 # -- Additional GRPCRoute annotations
2680 # -- Gateway API parentRefs for the GRPCRoute
2681 ## Must reference an existing Gateway
2682 # @default -- `[]` (See [values.yaml])
2684 # - name: example-gateway
2685 # namespace: example-gateway-namespace
2687 # -- List of hostnames for the GRPCRoute
2688 # @default -- `[]` (See [values.yaml])
2690 # - grpc.argocd.example.com
2691 # -- GRPCRoute rules configuration
2692 # @default -- `[]` (See [values.yaml])
2698 # - type: RequestHeaderModifier
2699 # requestHeaderModifier:
2701 # - name: X-Custom-Header
2702 # value: custom-value
2703 # Gateway API BackendTLSPolicy configuration
2704 # NOTE: BackendTLSPolicy support is in EXPERIMENTAL status
2705 # Required for HTTPS backends when using Gateway API
2706 # Not all Gateway controllers support this resource (e.g., Cilium does not support it yet)
2708 # -- Enable BackendTLSPolicy resource for Argo CD server (Gateway API)
2710 # -- Additional BackendTLSPolicy labels
2712 # -- Additional BackendTLSPolicy annotations
2714 # -- Target references for the BackendTLSPolicy
2715 # @default -- `[]` (See [values.yaml])
2719 # name: argocd-server
2720 # sectionName: https
2721 # -- TLS validation configuration
2722 # @default -- `{}` (See [values.yaml])
2724 # hostname: argocd-server.argocd.svc.cluster.local
2725 # caCertificateRefs:
2726 # - name: example-ca-cert
2729 # wellKnownCACertificates: System
2730 # Gateway API ListenerSet configuration
2731 # NOTE: Gateway API support is in EXPERIMENTAL status
2732 # ListenerSet allows attaching additional listeners to an existing Gateway
2733 # Requires Gateway API v1alpha2 and a controller that supports ListenerSet
2734 # Refer to https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1alpha2.ListenerSet
2736 # -- Enable ListenerSet resource for Argo CD server (Gateway API)
2738 # -- Additional ListenerSet labels
2740 # -- Additional ListenerSet annotations
2742 # -- Gateway API parentRef for the ListenerSet
2743 ## Must reference an existing Gateway. Unlike HTTPRoute, ListenerSet accepts exactly one parentRef.
2744 # @default -- `{}` (See [values.yaml])
2746 # name: example-gateway
2747 # namespace: example-gateway-namespace
2748 # -- Hostname for the synthesized listener. Defaults to global.domain when empty.
2750 # -- Name of the synthesized listener. Also used as sectionName in auto-derived httproute parentRefs.
2752 # -- Port for the synthesized listener
2754 # -- Protocol for the synthesized listener
2756 # -- TLS configuration for the synthesized listener
2758 # -- Enable TLS on the synthesized listener
2760 # -- TLS termination mode
2762 # -- Secret name for TLS certificate. Defaults to `argocd-server-tls` when empty.
2764 # -- allowedRoutes for the synthesized listener
2768 # -- Listeners to attach to the parent Gateway. When non-empty, used verbatim and all synthesized listener fields above are ignored.
2769 # @default -- `[]` (See [values.yaml])
2774 # hostname: argocd.example.com
2780 # name: argocd-server-tls
2784 ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource.
2787 # -- Enable custom rules for the server's ClusterRole resource
2789 # -- List of custom rules for the server's ClusterRole resource
2791 # Default ArgoCD Server's network policy
2793 # -- Default network policy rules used by ArgoCD Server
2794 # @default -- `false` (defaults to global.networkPolicy.create)
2798 # -- Repo server name
2800 # -- The number of repo server pods to run
2802 # -- Runtime class name for the repo server
2803 # @default -- `""` (defaults to global.runtimeClassName)
2804 runtimeClassName: ""
2805 ## Repo server Horizontal Pod Autoscaler
2807 # -- Enable Horizontal Pod Autoscaler ([HPA]) for the repo server
2809 # -- Minimum number of replicas for the repo server [HPA]
2811 # -- Maximum number of replicas for the repo server [HPA]
2813 # -- Average CPU utilization percentage for the repo server [HPA]
2814 targetCPUUtilizationPercentage: 50
2815 # -- Average memory utilization percentage for the repo server [HPA]
2816 targetMemoryUtilizationPercentage: 50
2817 # -- Configures the scaling behavior of the target in both Up and Down directions.
2820 # stabilizationWindowSeconds: 300
2824 # periodSeconds: 180
2826 # stabilizationWindowSeconds: 300
2831 # -- Configures custom HPA metrics for the Argo CD repo server
2832 # Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
2834 ## Repo server Pod Disruption Budget
2835 ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
2837 # -- Deploy a [PodDisruptionBudget] for the repo server
2839 # -- Labels to be added to repo server pdb
2841 # -- Annotations to be added to repo server pdb
2843 # -- Number of pods that are available after eviction as number or percentage (eg.: 50%)
2844 # @default -- `""` (defaults to 0 if not specified)
2846 # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%).
2847 ## Has higher precedence over `repoServer.pdb.minAvailable`
2849 # -- Policy for evicting unhealthy (not ready) pods, either `IfHealthyBudget` or `AlwaysAllow`
2850 ## Defaults to `IfHealthyBudget` if not set
2851 unhealthyPodEvictionPolicy: ""
2852 ## Repo server Vertical Pod Autoscaler
2853 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
2855 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the repo server
2857 # -- Labels to be added to repo server vpa
2859 # -- Annotations to be added to repo server vpa
2861 # -- One of the VPA operation modes
2862 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
2863 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
2865 # -- Controls how VPA computes the recommended resources for repo server container
2866 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
2868 # controlledResources: ["cpu", "memory"]
2875 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
2876 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
2877 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
2879 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
2880 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
2885 # durationSeconds: 10
2886 ## Repo server image
2888 # -- Repository to use for the repo server
2889 # @default -- `""` (defaults to global.image.repository)
2891 # -- Tag to use for the repo server
2892 # @default -- `""` (defaults to global.image.tag)
2894 # -- Image pull policy for the repo server
2895 # @default -- `""` (defaults to global.image.imagePullPolicy)
2897 # -- Secrets with credentials to pull images from a private registry
2898 # @default -- `[]` (defaults to global.imagePullSecrets)
2899 imagePullSecrets: []
2900 # -- Additional command line arguments to pass to repo server
2902 # -- Environment variables to pass to repo server
2904 # -- envFrom to pass to repo server
2905 # @default -- `[]` (See [values.yaml])
2908 # name: config-map-name
2912 # -- Specify postStart and preStop lifecycle hooks for your argo-repo-server container
2914 # -- Additional containers to be added to the repo server pod
2915 ## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/config-management-plugins/
2916 ## Note: Supports use of custom Helm templates
2918 # - name: cmp-my-plugin
2920 # - "/var/run/argocd/argocd-cmp-server"
2923 # runAsNonRoot: true
2926 # - mountPath: /var/run/argocd
2928 # - mountPath: /home/argocd/cmp-server/plugins
2930 # # Remove this volumeMount if you've chosen to bake the config file into the sidecar image.
2931 # - mountPath: /home/argocd/cmp-server/config/plugin.yaml
2932 # subPath: my-plugin.yaml
2933 # name: argocd-cmp-cm
2934 # # Starting with v2.4, do NOT mount the same tmp volume as the repo-server container. The filesystem separation helps
2935 # # mitigate path traversal attacks.
2938 # - name: cmp-my-plugin2
2940 # - "/var/run/argocd/argocd-cmp-server"
2943 # runAsNonRoot: true
2946 # - mountPath: /var/run/argocd
2948 # # Remove this volumeMount if you've chosen to bake the config file into the sidecar image.
2949 # - mountPath: /home/argocd/cmp-server/plugins
2951 # - mountPath: /home/argocd/cmp-server/config/plugin.yaml
2952 # subPath: my-plugin2.yaml
2953 # name: argocd-cmp-cm
2954 # # Starting with v2.4, do NOT mount the same tmp volume as the repo-server container. The filesystem separation helps
2955 # # mitigate path traversal attacks.
2959 # -- Init containers to add to the repo server pods
2962 # -- Extra arguments for the cp command in the repo server copyutil initContainer
2963 # @default -- `"--update=none"`
2964 extraArgs: "--update=none"
2965 # -- Resource limits and requests for the repo server copyutil initContainer
2973 # -- Additional volumeMounts to the repo server main container
2975 # -- Additional volumes to the repo server pod
2977 # - name: argocd-cmp-cm
2979 # name: argocd-cmp-cm
2983 # -- Volumes to be used in replacement of emptydir on default volumes
2986 # persistentVolumeClaim:
2987 # claimName: pvc-argocd-repo-server-keyring
2989 # persistentVolumeClaim:
2990 # claimName: pvc-argocd-repo-server-workdir
2992 # persistentVolumeClaim:
2993 # claimName: pvc-argocd-repo-server-tmp
2995 # persistentVolumeClaim:
2996 # claimName: pvc-argocd-repo-server-varfiles
2998 # persistentVolumeClaim:
2999 # claimName: pvc-argocd-repo-server-plugins
3001 ## RepoServer emptyDir volumes
3003 # -- EmptyDir size limit for repo server
3004 # @default -- `""` (defaults not set if not specified i.e. no size limit)
3007 # -- Toggle the usage of a ephemeral Helm working directory
3008 useEphemeralHelmWorkingDir: true
3009 # -- Annotations to be added to repo server Deployment
3010 deploymentAnnotations: {}
3011 # -- Labels for the repo server Deployment
3012 deploymentLabels: {}
3013 # -- Annotations to be added to repo server pods
3015 # -- Labels to be added to repo server pods
3017 # -- Resource limits and requests for the repo server pods
3026 # Repo server container ports
3028 # -- Repo server container port
3030 # -- Metrics container port
3032 # -- Host Network for Repo server pods
3034 # -- [DNS configuration]
3036 # -- Alternative DNS policy for Repo server pods
3037 dnsPolicy: "ClusterFirst"
3038 # -- Repo server container-level security context
3039 # @default -- See [values.yaml]
3040 containerSecurityContext:
3042 readOnlyRootFilesystem: true
3043 allowPrivilegeEscalation: false
3045 type: RuntimeDefault
3049 ## Readiness and liveness probes for Repo Server
3050 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
3052 # -- Enable Kubernetes readiness probe for Repo Server
3054 # -- Http path to use for the readiness probe
3056 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3058 # -- Number of seconds after the container has started before [probe] is initiated
3059 initialDelaySeconds: 10
3060 # -- How often (in seconds) to perform the [probe]
3062 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3064 # -- Number of seconds after which the [probe] times out
3067 # -- Enable Kubernetes liveness probe for Repo Server
3069 # -- Http path to use for the liveness probe
3070 httpPath: /healthz?full=true
3071 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3073 # -- Number of seconds after the container has started before [probe] is initiated
3074 initialDelaySeconds: 10
3075 # -- How often (in seconds) to perform the [probe]
3077 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3079 # -- Number of seconds after which the [probe] times out
3081 ## Startup probe for Repo Server (optional)
3082 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
3084 # -- Enable Kubernetes startup probe for Repo Server
3086 # -- Http path to use for the startup probe
3088 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3089 failureThreshold: 20
3090 # -- Number of seconds after the container has started before [probe] is initiated
3091 initialDelaySeconds: 10
3092 # -- How often (in seconds) to perform the [probe]
3094 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3096 # -- Number of seconds after which the [probe] times out
3098 # -- terminationGracePeriodSeconds for container lifecycle hook
3099 terminationGracePeriodSeconds: 30
3100 # -- [Node selector]
3101 # @default -- `{}` (defaults to global.nodeSelector)
3103 # -- [Tolerations] for use with node taints
3104 # @default -- `[]` (defaults to global.tolerations)
3106 # -- Assign custom [affinity] rules to the deployment
3107 # @default -- `{}` (defaults to global.affinity preset)
3109 # -- Assign custom [TopologySpreadConstraints] rules to the repo server
3110 # @default -- `[]` (defaults to global.topologySpreadConstraints)
3111 ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
3112 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
3113 topologySpreadConstraints: []
3115 # topologyKey: topology.kubernetes.io/zone
3116 # whenUnsatisfiable: DoNotSchedule
3118 # -- Deployment strategy to be added to the repo server Deployment
3119 deploymentStrategy: {}
3120 # type: RollingUpdate
3123 # maxUnavailable: 25%
3125 # -- Priority class for the repo server pods
3126 # @default -- `""` (defaults to global.priorityClassName)
3127 priorityClassName: ""
3128 # TLS certificate configuration via Secret
3129 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#configuring-tls-to-argocd-repo-server
3130 ## Note: Issuing certificates via cert-manager in not supported right now because it's not possible to restart repo server automatically without extra controllers.
3132 # -- Create argocd-repo-server-tls secret
3134 # -- Annotations to be added to argocd-repo-server-tls secret
3136 # -- Labels to be added to argocd-repo-server-tls secret
3138 # -- Certificate authority. Required for self-signed certificates.
3140 # -- Certificate private key
3142 # -- Certificate data. Must contain SANs of Repo service (ie: argocd-repo-server, argocd-repo-server.argo-cd.svc)
3144 ## Repo server service configuration
3146 # -- Repo server service annotations
3148 # -- Repo server service labels
3150 # -- Repo server service port
3152 # -- Repo server service port name
3153 portName: tcp-repo-server
3154 # -- Traffic distribution preference for the repo server service. If the field is not set, the implementation will apply its default routing strategy.
3155 trafficDistribution: ""
3156 ## Repo server metrics service configuration
3158 # -- Deploy metrics service
3161 # -- Metrics service type
3163 # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
3165 # -- Metrics service annotations
3167 # -- Metrics service labels
3169 # -- Metrics service port
3171 # -- Metrics service port name
3172 portName: http-metrics
3174 # -- Enable a prometheus ServiceMonitor
3176 # -- Prometheus ServiceMonitor interval
3178 # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used.
3180 # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels.
3182 # -- Prometheus [RelabelConfigs] to apply to samples before scraping
3184 # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion
3185 metricRelabelings: []
3186 # -- Prometheus ServiceMonitor selector
3188 # prometheus: kube-prometheus
3190 # -- Prometheus ServiceMonitor scheme
3192 # -- Prometheus ServiceMonitor tlsConfig
3194 # -- Prometheus ServiceMonitor namespace
3195 namespace: "" # "monitoring"
3196 # -- Prometheus ServiceMonitor labels
3197 additionalLabels: {}
3198 # -- Prometheus ServiceMonitor annotations
3200 ## Enable Custom Rules for the Repo server's Cluster Role resource
3201 ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource.
3204 # -- Enable custom rules for the Repo server's Cluster Role resource
3206 # -- List of custom rules for the Repo server's Cluster Role resource
3208 # -- Automount API credentials for the Service Account into the pod.
3209 automountServiceAccountToken: true
3210 ## Repo server service account
3211 ## If create is set to true, make sure to uncomment the name and update the rbac section below
3213 # -- Create repo server service account
3215 # -- Repo server service account name
3216 name: "" # "argocd-repo-server"
3217 # -- Annotations applied to created service account
3219 # -- Labels applied to created service account
3221 # -- Automount API credentials for the Service Account
3222 automountServiceAccountToken: true
3223 # -- Repo server rbac rules
3234 # Default repo server's network policy
3236 # -- Default network policy rules used by repo server
3237 # @default -- `false` (defaults to global.networkPolicy.create)
3239## ApplicationSet controller
3241 # -- ApplicationSet controller name string
3242 name: applicationset-controller
3243 # -- The number of ApplicationSet controller pods to run
3245 # -- Runtime class name for the ApplicationSet controller
3246 # @default -- `""` (defaults to global.runtimeClassName)
3247 runtimeClassName: ""
3248 ## ApplicationSet controller Pod Disruption Budget
3249 ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
3251 # -- Deploy a [PodDisruptionBudget] for the ApplicationSet controller
3253 # -- Labels to be added to ApplicationSet controller pdb
3255 # -- Annotations to be added to ApplicationSet controller pdb
3257 # -- Number of pods that are available after eviction as number or percentage (eg.: 50%)
3258 # @default -- `""` (defaults to 0 if not specified)
3260 # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%).
3261 ## Has higher precedence over `applicationSet.pdb.minAvailable`
3263 # -- Policy for evicting unhealthy (not ready) pods, either `IfHealthyBudget` or `AlwaysAllow`
3264 ## Defaults to `IfHealthyBudget` if not set
3265 unhealthyPodEvictionPolicy: ""
3266 ## ApplicationSet controller Vertical Pod Autoscaler
3267 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
3269 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the ApplicationSet controller
3271 # -- Labels to be added to ApplicationSet controller vpa
3273 # -- Annotations to be added to ApplicationSet controller vpa
3275 # -- One of the VPA operation modes
3276 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
3277 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
3279 # -- Controls how VPA computes the recommended resources for ApplicationSet controller container
3280 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
3282 # controlledResources: ["cpu", "memory"]
3289 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
3290 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
3291 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
3293 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
3294 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
3299 # durationSeconds: 10
3300 ## ApplicationSet controller image
3302 # -- Repository to use for the ApplicationSet controller
3303 # @default -- `""` (defaults to global.image.repository)
3305 # -- Tag to use for the ApplicationSet controller
3306 # @default -- `""` (defaults to global.image.tag)
3308 # -- Image pull policy for the ApplicationSet controller
3309 # @default -- `""` (defaults to global.image.imagePullPolicy)
3311 # -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
3312 # @default -- `[]` (defaults to global.imagePullSecrets)
3313 imagePullSecrets: []
3314 # -- ApplicationSet controller command line flags
3316 # -- Environment variables to pass to the ApplicationSet controller
3321 # -- envFrom to pass to the ApplicationSet controller
3322 # @default -- `[]` (See [values.yaml])
3325 # name: config-map-name
3329 # -- Additional containers to be added to the ApplicationSet controller pod
3330 ## Note: Supports use of custom Helm templates
3332 # -- Init containers to add to the ApplicationSet controller pod
3333 ## Note: Supports use of custom Helm templates
3335 # -- List of extra mounts to add (normally used with extraVolumes)
3336 extraVolumeMounts: []
3337 # -- List of extra volumes to add
3339 ## ApplicationSet controller emptyDir volumes
3341 # -- EmptyDir size limit for applicationSet controller
3342 # @default -- `""` (defaults not set if not specified i.e. no size limit)
3345 ## Metrics service configuration
3347 # -- Deploy metrics service
3350 # -- Metrics service type
3352 # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
3354 # -- Metrics service annotations
3356 # -- Metrics service labels
3358 # -- Metrics service port
3360 # -- Metrics service port name
3361 portName: http-metrics
3363 # -- Enable a prometheus ServiceMonitor
3365 # -- Prometheus ServiceMonitor interval
3367 # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used.
3369 # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels.
3371 # -- Prometheus [RelabelConfigs] to apply to samples before scraping
3373 # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion
3374 metricRelabelings: []
3375 # -- Prometheus ServiceMonitor selector
3377 # prometheus: kube-prometheus
3379 # -- Prometheus ServiceMonitor scheme
3381 # -- Prometheus ServiceMonitor tlsConfig
3383 # -- Prometheus ServiceMonitor namespace
3384 namespace: "" # monitoring
3385 # -- Prometheus ServiceMonitor labels
3386 additionalLabels: {}
3387 # -- Prometheus ServiceMonitor annotations
3389 ## ApplicationSet service configuration
3391 # -- ApplicationSet service annotations
3393 # -- ApplicationSet service labels
3395 # -- ApplicationSet service type
3397 # -- ApplicationSet service port
3399 # -- ApplicationSet service port name
3400 portName: http-webhook
3401 # -- Automount API credentials for the Service Account into the pod.
3402 automountServiceAccountToken: true
3404 # -- Create ApplicationSet controller service account
3406 # -- ApplicationSet controller service account name
3407 name: argocd-applicationset-controller
3408 # -- Annotations applied to created service account
3410 # -- Labels applied to created service account
3412 # -- Automount API credentials for the Service Account
3413 automountServiceAccountToken: true
3414 # -- Annotations to be added to ApplicationSet controller Deployment
3415 deploymentAnnotations: {}
3416 # -- Labels for the ApplicationSet controller Deployment
3417 deploymentLabels: {}
3418 # -- Annotations for the ApplicationSet controller pods
3420 # -- Labels for the ApplicationSet controller pods
3422 # -- Resource limits and requests for the ApplicationSet controller pods.
3431 # ApplicationSet controller container ports
3433 # -- Metrics container port
3435 # -- Probe container port
3437 # -- Webhook container port
3439 # -- [DNS configuration]
3441 # -- Alternative DNS policy for ApplicationSet controller pods
3442 dnsPolicy: "ClusterFirst"
3443 # -- ApplicationSet controller container-level security context
3444 # @default -- See [values.yaml]
3445 containerSecurityContext:
3447 readOnlyRootFilesystem: true
3448 allowPrivilegeEscalation: false
3450 type: RuntimeDefault
3454 ## Probes for ApplicationSet controller (optional)
3455 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
3457 # -- Enable Kubernetes liveness probe for ApplicationSet controller
3459 # -- Number of seconds after the container has started before [probe] is initiated
3460 initialDelaySeconds: 10
3461 # -- How often (in seconds) to perform the [probe]
3463 # -- Number of seconds after which the [probe] times out
3465 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3467 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3470 # -- Enable Kubernetes liveness probe for ApplicationSet controller
3472 # -- Number of seconds after the container has started before [probe] is initiated
3473 initialDelaySeconds: 10
3474 # -- How often (in seconds) to perform the [probe]
3476 # -- Number of seconds after which the [probe] times out
3478 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3480 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3482 ## Startup probe for ApplicationSet controller (optional)
3483 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
3485 # -- Enable Kubernetes startup probe for ApplicationSet controller
3487 # -- Number of seconds after the container has started before [probe] is initiated
3488 initialDelaySeconds: 10
3489 # -- How often (in seconds) to perform the [probe]
3491 # -- Number of seconds after which the [probe] times out
3493 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3495 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3496 failureThreshold: 20
3497 # -- terminationGracePeriodSeconds for container lifecycle hook
3498 terminationGracePeriodSeconds: 30
3499 # -- [Node selector]
3500 # @default -- `{}` (defaults to global.nodeSelector)
3502 # -- [Tolerations] for use with node taints
3503 # @default -- `[]` (defaults to global.tolerations)
3505 # -- Assign custom [affinity] rules
3506 # @default -- `{}` (defaults to global.affinity preset)
3508 # -- Assign custom [TopologySpreadConstraints] rules to the ApplicationSet controller
3509 # @default -- `[]` (defaults to global.topologySpreadConstraints)
3510 ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
3511 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
3512 topologySpreadConstraints: []
3514 # topologyKey: topology.kubernetes.io/zone
3515 # whenUnsatisfiable: DoNotSchedule
3517 # -- Deployment strategy to be added to the ApplicationSet controller Deployment
3518 deploymentStrategy: {}
3519 # type: RollingUpdate
3522 # maxUnavailable: 25%
3524 # -- Priority class for the ApplicationSet controller pods
3525 # @default -- `""` (defaults to global.priorityClassName)
3526 priorityClassName: ""
3527 # TLS certificate configuration via cert-manager
3528 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#tls-configuration
3530 # -- Deploy a Certificate resource (requires cert-manager)
3532 # -- Certificate primary domain (commonName)
3533 # @default -- `""` (defaults to global.domain)
3535 # -- Certificate Subject Alternate Names (SANs)
3537 # -- The requested 'duration' (i.e. lifetime) of the certificate.
3538 # @default -- `""` (defaults to 2160h = 90d if not specified)
3539 ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal
3541 # -- How long before the expiry a certificate should be renewed.
3542 # @default -- `""` (defaults to 360h = 15d if not specified)
3543 ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal
3545 # Certificate issuer
3546 ## Ref: https://cert-manager.io/docs/concepts/issuer
3548 # -- Certificate issuer group. Set if using an external issuer. Eg. `cert-manager.io`
3550 # -- Certificate issuer kind. Either `Issuer` or `ClusterIssuer`
3552 # -- Certificate issuer name. Eg. `letsencrypt`
3554 # Private key of the certificate
3556 # -- Rotation policy of private key when certificate is re-issued. Either: `Never` or `Always`
3557 rotationPolicy: Never
3558 # -- The private key cryptography standards (PKCS) encoding for private key. Either: `PCKS1` or `PKCS8`
3560 # -- Algorithm used to generate certificate private key. One of: `RSA`, `Ed25519` or `ECDSA`
3562 # -- Key bit size of the private key. If algorithm is set to `Ed25519`, size is ignored.
3564 # -- Annotations to be applied to the ApplicationSet Certificate
3566 ## Ingress for the Git Generator webhook
3567 ## Ref: https://argocd-applicationset.readthedocs.io/en/master/Generators-Git/#webhook-configuration)
3569 # -- Enable an ingress resource for ApplicationSet webhook
3571 # -- Additional ingress labels
3573 # -- Additional ingress annotations
3575 # -- Defines which ingress ApplicationSet controller will implement the resource
3576 ingressClassName: ""
3577 # -- Argo CD ApplicationSet hostname
3578 # @default -- `""` (defaults to global.domain)
3580 # -- List of ingress paths
3582 # -- Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific`
3584 # -- Enable TLS configuration for the hostname defined at `applicationSet.webhook.ingress.hostname`
3585 ## TLS certificate will be retrieved from a TLS secret with name:`argocd-applicationset-controller-tls`
3587 # -- The list of additional hostnames to be covered by ingress record
3588 # @default -- `[]` (See [values.yaml])
3590 # - name: argocd.example.com
3593 # -- Additional ingress paths
3594 # @default -- `[]` (See [values.yaml])
3600 # name: ssl-redirect
3602 # name: use-annotation
3604 # -- Additional ingress rules
3605 # @default -- `[]` (See [values.yaml])
3606 ## Note: Supports use of custom Helm templates
3610 # - path: /api/webhook
3614 # name: '{{ include "argo-cd.applicationSet.fullname" . }}'
3616 # name: '{{ .Values.applicationSet.service.portName }}'
3618 # -- Additional ingress TLS configuration
3619 # @default -- `[]` (See [values.yaml])
3621 # - secretName: argocd-applicationset-tls
3623 # - argocd-applicationset.example.com
3624 ## Gateway API HTTPRoute for the Git Generator webhook
3625 ## Ref: https://argocd-applicationset.readthedocs.io/en/master/Generators-Git/#webhook-configuration)
3626 # NOTE: Gateway API support is in EXPERIMENTAL status
3627 # Support depends on your Gateway controller implementation
3628 # Some controllers may require additional configuration (e.g., BackendTLSPolicy for HTTPS backends)
3629 # Refer to https://gateway-api.sigs.k8s.io/implementations/ for controller-specific details
3631 # -- Enable HTTPRoute resource for Argo CD Applicationset Webhook (Gateway API)
3633 # -- Additional HTTPRoute labels
3635 # -- Additional HTTPRoute annotations
3637 # -- Gateway API parentRefs for the HTTPRoute
3638 ## Must reference an existing Gateway
3639 # @default -- `[]` (See [values.yaml])
3641 # - name: example-gateway
3642 # namespace: example-gateway-namespace
3643 # sectionName: https
3644 # -- List of hostnames for the HTTPRoute
3645 # @default -- `[]` (See [values.yaml])
3647 # - argocd.example.com
3648 # -- HTTPRoute rules configuration
3649 # @default -- `[]` (See [values.yaml])
3656 # - type: RequestHeaderModifier
3657 # requestHeaderModifier:
3659 # - name: X-Custom-Header
3660 # value: custom-value
3661 # Gateway API ListenerSet configuration for the Git Generator webhook
3662 ## Ref: https://argocd-applicationset.readthedocs.io/en/master/Generators-Git/#webhook-configuration
3663 # NOTE: Gateway API support is in EXPERIMENTAL status
3664 # ListenerSet allows attaching additional listeners to an existing Gateway
3665 # Requires Gateway API v1alpha2 and a controller that supports ListenerSet
3666 # Refer to https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1alpha2.ListenerSet
3668 # -- Enable ListenerSet resource for Argo CD ApplicationSet webhook (Gateway API)
3670 # -- Additional ListenerSet labels
3672 # -- Additional ListenerSet annotations
3674 # -- Gateway API parentRef for the ListenerSet
3675 ## Must reference an existing Gateway. Unlike HTTPRoute, ListenerSet accepts exactly one parentRef.
3676 # @default -- `{}` (See [values.yaml])
3678 # name: example-gateway
3679 # namespace: example-gateway-namespace
3680 # -- Hostname for the synthesized listener. Defaults to global.domain when empty.
3682 # -- Name of the synthesized listener. Also used as sectionName in auto-derived httproute parentRefs.
3684 # -- Port for the synthesized listener
3686 # -- Protocol for the synthesized listener
3688 # -- TLS configuration for the synthesized listener
3690 # -- Enable TLS on the synthesized listener
3692 # -- TLS termination mode
3694 # -- Secret name for TLS certificate. Defaults to `argocd-applicationset-controller-tls` when empty.
3696 # -- allowedRoutes for the synthesized listener
3700 # -- Listeners to attach to the parent Gateway. When non-empty, used verbatim and all synthesized listener fields above are ignored.
3701 # @default -- `[]` (See [values.yaml])
3706 # hostname: argocd.example.com
3712 # name: argocd-applicationset-controller-tls
3716 # -- Enable ApplicationSet in any namespace feature
3717 allowAnyNamespace: false
3718 # Default ApplicationSet controller's network policy
3720 # -- Default network policy rules used by ApplicationSet controller
3721 # @default -- `false` (defaults to global.networkPolicy.create)
3723## Notifications controller
3725 # -- Enable notifications controller
3727 # -- Notifications controller name string
3728 name: notifications-controller
3729 # -- Argo CD dashboard url; used in place of {{.context.argocdUrl}} in templates
3730 # @default -- `""` (defaults to https://`global.domain`)
3732 # -- Runtime class name for the notifications controller
3733 # @default -- `""` (defaults to global.runtimeClassName)
3734 runtimeClassName: ""
3735 ## Notifications controller Pod Disruption Budget
3736 ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
3738 # -- Deploy a [PodDisruptionBudget] for the notifications controller
3740 # -- Labels to be added to notifications controller pdb
3742 # -- Annotations to be added to notifications controller pdb
3744 # -- Number of pods that are available after eviction as number or percentage (eg.: 50%)
3745 # @default -- `""` (defaults to 0 if not specified)
3747 # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%).
3748 ## Has higher precedence over `notifications.pdb.minAvailable`
3750 # -- Policy for evicting unhealthy (not ready) pods, either `IfHealthyBudget` or `AlwaysAllow`
3751 ## Defaults to `IfHealthyBudget` if not set
3752 unhealthyPodEvictionPolicy: ""
3753 ## Notifications controller Vertical Pod Autoscaler
3754 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
3756 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the notifications controller
3758 # -- Labels to be added to notifications controller vpa
3760 # -- Annotations to be added to notifications controller vpa
3762 # -- One of the VPA operation modes
3763 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
3764 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
3766 # -- Controls how VPA computes the recommended resources for notifications controller container
3767 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
3769 # controlledResources: ["cpu", "memory"]
3776 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
3777 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
3778 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
3780 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
3781 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
3786 # durationSeconds: 10
3787 ## Notifications controller image
3789 # -- Repository to use for the notifications controller
3790 # @default -- `""` (defaults to global.image.repository)
3792 # -- Tag to use for the notifications controller
3793 # @default -- `""` (defaults to global.image.tag)
3795 # -- Image pull policy for the notifications controller
3796 # @default -- `""` (defaults to global.image.imagePullPolicy)
3798 # -- Secrets with credentials to pull images from a private registry
3799 # @default -- `[]` (defaults to global.imagePullSecrets)
3800 imagePullSecrets: []
3801 # DEPRECATED - Use configs.params to override
3802 # -- Notifications controller log format. Either `text` or `json`
3803 # @default -- `""` (defaults to global.logging.format)
3805 # -- Notifications controller log level. One of: `debug`, `info`, `warn`, `error`
3806 # @default -- `""` (defaults to global.logging.level)
3809 # -- Extra arguments to provide to the notifications controller
3811 # -- Additional container environment variables
3813 # -- envFrom to pass to the notifications controller
3814 # @default -- `[]` (See [values.yaml])
3817 # name: config-map-name
3821 # -- Additional containers to be added to the notifications controller pod
3822 ## Note: Supports use of custom Helm templates
3824 # -- Init containers to add to the notifications controller pod
3825 ## Note: Supports use of custom Helm templates
3827 # -- List of extra mounts to add (normally used with extraVolumes)
3828 extraVolumeMounts: []
3829 # -- List of extra volumes to add
3831 # -- Define user-defined context
3832 ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/templates/#defining-user-defined-context
3835 # environmentName: staging
3838 # -- Whether helm chart creates notifications controller secret
3839 ## If true, will create a secret with the name below. Otherwise, will assume existence of a secret with that name.
3841 # -- notifications controller Secret name
3842 name: "argocd-notifications-secret"
3843 # -- key:value pairs of annotations to be added to the secret
3845 # -- key:value pairs of labels to be added to the secret
3847 # -- Generic key:value pairs to be inserted into the secret
3848 ## Can be used for templates, notification services etc. Some examples given below.
3849 ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/overview/
3852 # # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/slack/
3854 # # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/grafana/
3856 # webhooks-github-token:
3860 # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/email/
3863 # -- Enables prometheus metrics server
3868 # -- Metrics service type
3870 # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
3872 # -- Metrics service annotations
3874 # -- Metrics service labels
3876 # -- Metrics service port name
3877 portName: http-metrics
3879 # -- Enable a prometheus ServiceMonitor
3881 # -- Prometheus ServiceMonitor selector
3883 # prometheus: kube-prometheus
3884 # -- Prometheus ServiceMonitor labels
3885 additionalLabels: {}
3886 # -- Prometheus ServiceMonitor annotations
3888 # namespace: monitoring
3890 # scrapeTimeout: 10s
3891 # -- Prometheus ServiceMonitor scheme
3893 # -- Prometheus ServiceMonitor tlsConfig
3895 # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels.
3897 # -- Prometheus [RelabelConfigs] to apply to samples before scraping
3899 # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion
3900 metricRelabelings: []
3901 # -- Configures notification services such as slack, email or custom webhook
3902 # @default -- See [values.yaml]
3903 ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/overview/
3906 # token: $slack-token
3908 # -- Annotations to be applied to the notifications controller Deployment
3909 deploymentAnnotations: {}
3910 # -- Labels for the notifications controller Deployment
3911 deploymentLabels: {}
3912 # -- Annotations to be applied to the notifications controller Pods
3914 # -- Labels to be applied to the notifications controller Pods
3916 # -- Resource limits and requests for the notifications controller
3925 # Notification controller container ports
3927 # -- Metrics container port
3929 # -- [DNS configuration]
3931 # -- Alternative DNS policy for notifications controller Pods
3932 dnsPolicy: "ClusterFirst"
3933 # -- Notification controller container-level security Context
3934 # @default -- See [values.yaml]
3935 containerSecurityContext:
3937 readOnlyRootFilesystem: true
3938 allowPrivilegeEscalation: false
3940 type: RuntimeDefault
3944 ## Probes for notifications controller Pods (optional)
3945 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
3947 # -- Enable Kubernetes liveness probe for notifications controller Pods
3949 # -- Number of seconds after the container has started before [probe] is initiated
3950 initialDelaySeconds: 10
3951 # -- How often (in seconds) to perform the [probe]
3953 # -- Number of seconds after which the [probe] times out
3955 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3957 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3960 # -- Enable Kubernetes liveness probe for notifications controller Pods
3962 # -- Number of seconds after the container has started before [probe] is initiated
3963 initialDelaySeconds: 10
3964 # -- How often (in seconds) to perform the [probe]
3966 # -- Number of seconds after which the [probe] times out
3968 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3970 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3972 ## Startup probe for notifications controller Pods (optional)
3973 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
3975 # -- Enable Kubernetes startup probe for notifications controller Pods
3977 # -- Number of seconds after the container has started before [probe] is initiated
3978 initialDelaySeconds: 10
3979 # -- How often (in seconds) to perform the [probe]
3981 # -- Number of seconds after which the [probe] times out
3983 # -- Minimum consecutive successes for the [probe] to be considered successful after having failed
3985 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
3986 failureThreshold: 20
3987 # -- terminationGracePeriodSeconds for container lifecycle hook
3988 terminationGracePeriodSeconds: 30
3989 # -- [Node selector]
3990 # @default -- `{}` (defaults to global.nodeSelector)
3992 # -- [Tolerations] for use with node taints
3993 # @default -- `[]` (defaults to global.tolerations)
3995 # -- Assign custom [affinity] rules
3996 # @default -- `{}` (defaults to global.affinity preset)
3998 # -- Assign custom [TopologySpreadConstraints] rules to the application controller
3999 # @default -- `[]` (defaults to global.topologySpreadConstraints)
4000 ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
4001 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
4002 topologySpreadConstraints: []
4004 # topologyKey: topology.kubernetes.io/zone
4005 # whenUnsatisfiable: DoNotSchedule
4007 # -- Deployment strategy to be added to the notifications controller Deployment
4010 # -- Priority class for the notifications controller pods
4011 # @default -- `""` (defaults to global.priorityClassName)
4012 priorityClassName: ""
4013 # -- Automount API credentials for the Service Account into the pod.
4014 automountServiceAccountToken: true
4016 # -- Create notifications controller service account
4018 # -- Notification controller service account name
4019 name: argocd-notifications-controller
4020 # -- Annotations applied to created service account
4022 # -- Labels applied to created service account
4024 # -- Automount API credentials for the Service Account
4025 automountServiceAccountToken: true
4027 # -- Whether helm chart creates notifications controller config map
4029 ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource.
4032 # -- List of custom rules for the notifications controller's ClusterRole resource
4034 # -- Contains centrally managed global application subscriptions
4035 ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/subscriptions/
4037 # # subscription for on-sync-status-unknown trigger notifications
4040 # - email:test@gmail.com
4042 # - on-sync-status-unknown
4043 # # subscription restricted to applications with matching labels only
4046 # selector: test=true
4048 # - on-sync-status-unknown
4050 # -- The notification template is used to generate the notification content
4051 ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/templates/
4053 # template.app-deployed: |
4055 # subject: New version of an application {{.app.metadata.name}} is up and running.
4057 # {{if eq .serviceType "slack"}}:white_check_mark:{{end}} Application {{.app.metadata.name}} is now running new version of deployments manifests.
4061 # "title": "{{ .app.metadata.name}}",
4062 # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}",
4063 # "color": "#18be52",
4066 # "title": "Sync Status",
4067 # "value": "{{.app.status.sync.status}}",
4071 # "title": "Repository",
4072 # "value": "{{.app.spec.source.repoURL}}",
4076 # "title": "Revision",
4077 # "value": "{{.app.status.sync.revision}}",
4080 # {{range $index, $c := .app.status.conditions}}
4081 # {{if not $index}},{{end}}
4082 # {{if $index}},{{end}}
4084 # "title": "{{$c.type}}",
4085 # "value": "{{$c.message}}",
4091 # template.app-health-degraded: |
4093 # subject: Application {{.app.metadata.name}} has degraded.
4095 # {{if eq .serviceType "slack"}}:exclamation:{{end}} Application {{.app.metadata.name}} has degraded.
4096 # Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.
4100 # "title": "{{ .app.metadata.name}}",
4101 # "title_link": "{{.context.argocdUrl}}/applications/{{.app.metadata.name}}",
4102 # "color": "#f4c030",
4105 # "title": "Sync Status",
4106 # "value": "{{.app.status.sync.status}}",
4110 # "title": "Repository",
4111 # "value": "{{.app.spec.source.repoURL}}",
4114 # {{range $index, $c := .app.status.conditions}}
4115 # {{if not $index}},{{end}}
4116 # {{if $index}},{{end}}
4118 # "title": "{{$c.type}}",
4119 # "value": "{{$c.message}}",
4125 # template.app-sync-failed: |
4127 # subject: Failed to sync application {{.app.metadata.name}}.
4129 # {{if eq .serviceType "slack"}}:exclamation:{{end}} The sync operation of application {{.app.metadata.name}} has failed at {{.app.status.operationState.finishedAt}} with the following error: {{.app.status.operationState.message}}
4130 # Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true .
4134 # "title": "{{ .app.metadata.name}}",
4135 # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}",
4136 # "color": "#E96D76",
4139 # "title": "Sync Status",
4140 # "value": "{{.app.status.sync.status}}",
4144 # "title": "Repository",
4145 # "value": "{{.app.spec.source.repoURL}}",
4148 # {{range $index, $c := .app.status.conditions}}
4149 # {{if not $index}},{{end}}
4150 # {{if $index}},{{end}}
4152 # "title": "{{$c.type}}",
4153 # "value": "{{$c.message}}",
4159 # template.app-sync-running: |
4161 # subject: Start syncing application {{.app.metadata.name}}.
4163 # The sync operation of application {{.app.metadata.name}} has started at {{.app.status.operationState.startedAt}}.
4164 # Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true .
4168 # "title": "{{ .app.metadata.name}}",
4169 # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}",
4170 # "color": "#0DADEA",
4173 # "title": "Sync Status",
4174 # "value": "{{.app.status.sync.status}}",
4178 # "title": "Repository",
4179 # "value": "{{.app.spec.source.repoURL}}",
4182 # {{range $index, $c := .app.status.conditions}}
4183 # {{if not $index}},{{end}}
4184 # {{if $index}},{{end}}
4186 # "title": "{{$c.type}}",
4187 # "value": "{{$c.message}}",
4193 # template.app-sync-status-unknown: |
4195 # subject: Application {{.app.metadata.name}} sync status is 'Unknown'
4197 # {{if eq .serviceType "slack"}}:exclamation:{{end}} Application {{.app.metadata.name}} sync is 'Unknown'.
4198 # Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.
4199 # {{if ne .serviceType "slack"}}
4200 # {{range $c := .app.status.conditions}}
4207 # "title": "{{ .app.metadata.name}}",
4208 # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}",
4209 # "color": "#E96D76",
4212 # "title": "Sync Status",
4213 # "value": "{{.app.status.sync.status}}",
4217 # "title": "Repository",
4218 # "value": "{{.app.spec.source.repoURL}}",
4221 # {{range $index, $c := .app.status.conditions}}
4222 # {{if not $index}},{{end}}
4223 # {{if $index}},{{end}}
4225 # "title": "{{$c.type}}",
4226 # "value": "{{$c.message}}",
4232 # template.app-sync-succeeded: |
4234 # subject: Application {{.app.metadata.name}} has been successfully synced.
4236 # {{if eq .serviceType "slack"}}:white_check_mark:{{end}} Application {{.app.metadata.name}} has been successfully synced at {{.app.status.operationState.finishedAt}}.
4237 # Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true .
4241 # "title": "{{ .app.metadata.name}}",
4242 # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}",
4243 # "color": "#18be52",
4246 # "title": "Sync Status",
4247 # "value": "{{.app.status.sync.status}}",
4251 # "title": "Repository",
4252 # "value": "{{.app.spec.source.repoURL}}",
4255 # {{range $index, $c := .app.status.conditions}}
4256 # {{if not $index}},{{end}}
4257 # {{if $index}},{{end}}
4259 # "title": "{{$c.type}}",
4260 # "value": "{{$c.message}}",
4267 # -- The trigger defines the condition when the notification should be sent
4268 ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/triggers/
4270 # trigger.on-deployed: |
4271 # - description: Application is synced and healthy. Triggered once per commit.
4272 # oncePer: app.status.sync.revision
4275 # when: app.status.operationState.phase in ['Succeeded'] and app.status.health.status == 'Healthy'
4276 # trigger.on-health-degraded: |
4277 # - description: Application has degraded
4279 # - app-health-degraded
4280 # when: app.status.health.status == 'Degraded'
4281 # trigger.on-sync-failed: |
4282 # - description: Application syncing has failed
4285 # when: app.status.operationState.phase in ['Error', 'Failed']
4286 # trigger.on-sync-running: |
4287 # - description: Application is being synced
4289 # - app-sync-running
4290 # when: app.status.operationState.phase in ['Running']
4291 # trigger.on-sync-status-unknown: |
4292 # - description: Application status is 'Unknown'
4294 # - app-sync-status-unknown
4295 # when: app.status.sync.status == 'Unknown'
4296 # trigger.on-sync-succeeded: |
4297 # - description: Application syncing has succeeded
4299 # - app-sync-succeeded
4300 # when: app.status.operationState.phase in ['Succeeded']
4302 # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/triggers/#default-triggers
4303 # defaultTriggers: |
4304 # - on-sync-status-unknown
4306 # Default notifications controller's network policy
4308 # -- Default network policy rules used by notifications controller
4309 # @default -- `false` (defaults to global.networkPolicy.create)
4312 # -- Enable commit server
4314 # -- Commit server name
4316 # -- Runtime class name for the commit server
4317 # @default -- `""` (defaults to global.runtimeClassName)
4318 runtimeClassName: ""
4319 ## commit server controller image
4321 # -- Repository to use for the commit server
4322 # @default -- `""` (defaults to global.image.repository)
4324 # -- Tag to use for the commit server
4325 # @default -- `""` (defaults to global.image.tag)
4327 # -- Image pull policy for the commit server
4328 # @default -- `""` (defaults to global.image.imagePullPolicy)
4330 # -- commit server command line flags
4332 # -- Environment variables to pass to the commit server
4337 # -- envFrom to pass to the commit server
4338 # @default -- `[]` (See [values.yaml])
4341 # name: config-map-name
4345 # -- List of extra mounts to add (normally used with extraVolumes)
4346 extraVolumeMounts: []
4347 # -- List of extra volumes to add
4350 # -- Enables prometheus metrics server
4353 # -- Metrics service type
4355 # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
4357 # -- Metrics service annotations
4359 # -- Metrics service labels
4361 # -- Metrics service port
4363 # -- Metrics service port name
4365 ## commit server service configuration
4367 # -- commit server service annotations
4369 # -- commit server service labels
4371 # -- commit server service port
4373 # -- commit server service port name
4375 # -- Automount API credentials for the Service Account into the pod.
4376 automountServiceAccountToken: false
4378 # -- Create commit server service account
4380 # -- commit server service account name
4381 name: argocd-commit-server
4382 # -- Annotations applied to created service account
4384 # -- Labels applied to created service account
4386 # -- Automount API credentials for the Service Account
4387 automountServiceAccountToken: true
4388 # -- Annotations to be added to commit server Deployment
4389 deploymentAnnotations: {}
4390 # -- Labels for the commit server Deployment
4391 deploymentLabels: {}
4392 # -- Annotations for the commit server pods
4394 # -- Labels for the commit server pods
4396 # -- Resource limits and requests for the commit server pods.
4405 # -- [DNS configuration]
4407 # -- Alternative DNS policy for commit server pods
4408 dnsPolicy: "ClusterFirst"
4409 # -- commit server container-level security context
4410 # @default -- See [values.yaml]
4411 containerSecurityContext:
4413 readOnlyRootFilesystem: true
4414 allowPrivilegeEscalation: false
4419 type: RuntimeDefault
4420 ## Probes for commit server (optional)
4421 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
4423 # -- Enable Kubernetes liveness probe for commit server
4425 # -- Http path to use for the readiness probe
4427 # -- Number of seconds after the container has started before [probe] is initiated
4428 initialDelaySeconds: 5
4429 # -- How often (in seconds) to perform the [probe]
4431 # -- Number of seconds after which the [probe] times out
4433 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
4436 # -- Enable Kubernetes liveness probe for commit server
4438 # -- Http path to use for the liveness probe
4439 httpPath: /healthz?full=true
4440 # -- Number of seconds after the container has started before [probe] is initiated
4441 initialDelaySeconds: 30
4442 # -- How often (in seconds) to perform the [probe]
4444 # -- Number of seconds after which the [probe] times out
4446 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
4448 ## Startup probe for commit server (optional)
4449 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
4451 # -- Enable Kubernetes startup probe for commit server
4453 # -- Http path to use for the startup probe
4455 # -- Number of seconds after the container has started before [probe] is initiated
4456 initialDelaySeconds: 10
4457 # -- How often (in seconds) to perform the [probe]
4459 # -- Number of seconds after which the [probe] times out
4461 # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
4462 failureThreshold: 20
4463 # -- terminationGracePeriodSeconds for container lifecycle hook
4464 terminationGracePeriodSeconds: 30
4465 # -- [Node selector]
4466 # @default -- `{}` (defaults to global.nodeSelector)
4468 # -- [Tolerations] for use with node taints
4469 # @default -- `[]` (defaults to global.tolerations)
4471 # -- Assign custom [affinity] rules
4472 # @default -- `{}` (defaults to global.affinity preset)
4474 # -- Assign custom [TopologySpreadConstraints] rules to the commit server
4475 # @default -- `[]` (defaults to global.topologySpreadConstraints)
4476 ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
4477 ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment
4478 topologySpreadConstraints: []
4480 # topologyKey: topology.kubernetes.io/zone
4481 # whenUnsatisfiable: DoNotSchedule
4483 # -- Deployment strategy to be added to the commit server Deployment
4484 deploymentStrategy: {}
4485 # type: RollingUpdate
4488 # maxUnavailable: 25%
4490 # -- Priority class for the commit server pods
4491 # @default -- `""` (defaults to global.priorityClassName)
4492 priorityClassName: ""
4493 # Default commit server's network policy
4495 # -- Default network policy rules used by commit server
4496 # @default -- `false` (defaults to global.networkPolicy.create)
4498 ## Commit server Vertical Pod Autoscaler
4499 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/
4501 # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the commit server
4503 # -- Labels to be added to commit server vpa
4505 # -- Annotations to be added to commit server vpa
4507 # -- One of the VPA operation modes
4508 ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically
4509 ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden
4511 # -- Controls how VPA computes the recommended resources for commit server container
4512 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml
4514 # controlledResources: ["cpu", "memory"]
4521 # -- The recommenders that will provide recommendations for vertical scaling. Only relevant if a named VPA recommender (e.g. one started with a custom recommender name) is in use; leave unset to use the cluster's default recommender
4522 ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/api.md#verticalpodautoscalerspec
4523 ## NOTE: specify only zero or one recommender as of VPA 1.7.1
4525 # -- Configures a startup resource boost for faster cold-start (application boot) resource allocation. NOTE: startupBoost is currently a GKE-specific extension to the VPA API and is only honored on GKE clusters; it is rendered only when set
4526 ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/boost-application-startup
4531 # durationSeconds: 10