1# This file has been modified by Chainguard, Inc.
3# Copyright Chainguard, Inc. All Rights Reserved.
4# Chainguard, Inc. modifications are subject to the license
5# available at: https://www.chainguard.dev/legal/software-license-agreement
7# Copyright Broadcom, Inc. All Rights Reserved.
8# SPDX-License-Identifier: APACHE-2.0
10## @section Global parameters
11## Global Docker image parameters
12## Please, note that this will override the image parameters, including dependencies, configured to use the global value
13## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
15## @param global.imageRegistry Global Docker image registry
16## @param global.imagePullSecrets Global Docker registry secret names as an array
17## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
23 ## - myRegistryKeySecretName
26 defaultStorageClass: ""
27 ## Security parameters
30 ## @param global.security.allowInsecureImages Allows skipping image verification
31 allowInsecureImages: false
32 ## Compatibility adaptations for Kubernetes platforms
35 ## Compatibility adaptations for Openshift
38 ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation)
40 adaptSecurityContext: auto
42## @section Common parameters
44## @param kubeVersion Override Kubernetes version
47## @param nameOverride String to partially override common.names.fullname
50## @param fullnameOverride String to fully override common.names.fullname
53## @param commonLabels Labels to add to all deployed objects
56## @param commonAnnotations Annotations to add to all deployed objects
59## @param clusterDomain Kubernetes cluster domain name
61clusterDomain: cluster.local
62## @param extraDeploy Array of extra objects to deploy with the release
65## @section Argo CD image parameters
67## Iamguarded Argo CD image
68## @param image.registry [default: REGISTRY_NAME] Argo CD image registry
69## @param image.repository [default: REPOSITORY_NAME/argo-cd] Argo CD image repository
70## @skip image.tag Argo CD image tag (immutable tags are recommended)
71## @param image.digest Argo CD image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
72## @param image.pullPolicy Argo CD image pull policy
73## @param image.pullSecrets Argo CD image pull secrets
74## @param image.debug Enable Argo CD image debug mode
77 registry: chainreg.biz
78 repository: chainguard-private/argocd-iamguarded
81 ## Specify a imagePullPolicy
82 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
84 pullPolicy: IfNotPresent
85 ## Optionally specify an array of imagePullSecrets.
86 ## Secrets must be manually created in the namespace.
87 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
90 ## - myRegistryKeySecretName
96## @section Argo CD application controller parameters
101 ## @param controller.kind Kind to deploy ArgoCD application controller in.
102 ## Use either StatefulSet or Deployment (default). StatefulSet is required when running in HA mode.
103 ## ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/high_availability/
106 ## @param controller.replicaCount Number of Argo CD replicas to deploy
109 ## Configure extra options for Argo CD containers' liveness and readiness probes
110 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
111 ## @param controller.startupProbe.enabled Enable startupProbe on Argo CD nodes
112 ## @param controller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
113 ## @param controller.startupProbe.periodSeconds Period seconds for startupProbe
114 ## @param controller.startupProbe.timeoutSeconds Timeout seconds for startupProbe
115 ## @param controller.startupProbe.failureThreshold Failure threshold for startupProbe
116 ## @param controller.startupProbe.successThreshold Success threshold for startupProbe
120 initialDelaySeconds: 10
125 ## @param controller.livenessProbe.enabled Enable livenessProbe on Argo CD nodes
126 ## @param controller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
127 ## @param controller.livenessProbe.periodSeconds Period seconds for livenessProbe
128 ## @param controller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
129 ## @param controller.livenessProbe.failureThreshold Failure threshold for livenessProbe
130 ## @param controller.livenessProbe.successThreshold Success threshold for livenessProbe
134 initialDelaySeconds: 10
139 ## @param controller.readinessProbe.enabled Enable readinessProbe on Argo CD nodes
140 ## @param controller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
141 ## @param controller.readinessProbe.periodSeconds Period seconds for readinessProbe
142 ## @param controller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
143 ## @param controller.readinessProbe.failureThreshold Failure threshold for readinessProbe
144 ## @param controller.readinessProbe.successThreshold Success threshold for readinessProbe
148 initialDelaySeconds: 10
153 ## @param controller.customStartupProbe Custom startupProbe that overrides the default one
155 customStartupProbe: {}
156 ## @param controller.customLivenessProbe Custom livenessProbe that overrides the default one
158 customLivenessProbe: {}
159 ## @param controller.customReadinessProbe Custom readinessProbe that overrides the default one
161 customReadinessProbe: {}
162 ## Argo CD resource requests and limits
163 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
164 ## @param controller.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if controller.resources is set (controller.resources is recommended for production).
166 resourcesPreset: "micro"
167 ## @param controller.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
178 ## Configure Pods Security Context
179 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
180 ## @param controller.podSecurityContext.enabled Enabled Argo CD pods' Security Context
181 ## @param controller.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
182 ## @param controller.podSecurityContext.sysctls Set kernel settings using the sysctl interface
183 ## @param controller.podSecurityContext.supplementalGroups Set filesystem extra groups
184 ## @param controller.podSecurityContext.fsGroup Set Argo CD pod's Security Context fsGroup
188 fsGroupChangePolicy: Always
190 supplementalGroups: []
192 ## Configure Container Security Context
193 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
194 ## @param controller.containerSecurityContext.enabled Enabled Argo CD containers' Security Context
195 ## @param controller.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
196 ## @param controller.containerSecurityContext.runAsUser Set Argo CD containers' Security Context runAsUser
197 ## @param controller.containerSecurityContext.runAsGroup Set Argo CD containers' Security Context runAsGroup
198 ## @param controller.containerSecurityContext.allowPrivilegeEscalation Set Argo CD containers' Security Context allowPrivilegeEscalation
199 ## @param controller.containerSecurityContext.capabilities.drop Set Argo CD containers' Security Context capabilities to be dropped
200 ## @param controller.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' Security Context readOnlyRootFilesystem
201 ## @param controller.containerSecurityContext.runAsNonRoot Set Argo CD container's Security Context runAsNonRoot
202 ## @param controller.containerSecurityContext.privileged Set controller container's Security Context privileged
203 ## @param controller.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
205 containerSecurityContext:
211 readOnlyRootFilesystem: true
212 allowPrivilegeEscalation: false
217 type: "RuntimeDefault"
218 ## ServiceAccount configuration for the Argo CD application controller
221 ## @param controller.serviceAccount.create Specifies whether a ServiceAccount should be created
224 ## @param controller.serviceAccount.name The name of the ServiceAccount to use.
225 ## If not set and create is true, a name is generated using the common.names.fullname template
228 ## @param controller.serviceAccount.automountServiceAccountToken Automount service account token for the application controller service account
230 automountServiceAccountToken: false
231 ## @param controller.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
234 ## Enable admin clusterrole resources. Allows to Argo CD to deploy to the K8s cluster
235 ## @param controller.clusterAdminAccess Enable K8s cluster admin access for the application controller
237 clusterAdminAccess: true
238 ## Enable Custom Rules for the Application Controller cluster role
239 ## @param controller.clusterRoleRules Use custom rules for the application controller's cluster role
242 ## Argo CD application controller log format: text|json
243 ## @param controller.logFormat Format for the Argo CD application controller logs. Options: [text, json]
246 ## Argo CD application controller log level
247 ## @param controller.logLevel Log level for the Argo CD application controller
250 ## Argo CD application controller ports
251 ## @param controller.containerPorts.metrics Argo CD application controller metrics port number
254 ## Argo CD application controller service parameters
257 ## @param controller.service.type Argo CD service type
260 ## @param controller.service.ports.metrics Argo CD application controller service port
264 ## Node ports to expose
265 ## @param controller.service.nodePorts.metrics Node port for Argo CD application controller service
266 ## NOTE: choose port between <30000-32767>
270 ## @param controller.service.clusterIP Argo CD application controller service Cluster IP
275 ## @param controller.service.loadBalancerIP Argo CD application controller service Load Balancer IP
276 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
279 ## @param controller.service.loadBalancerSourceRanges Argo CD application controller service Load Balancer sources
280 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
282 ## loadBalancerSourceRanges:
285 loadBalancerSourceRanges: []
286 ## @param controller.service.externalTrafficPolicy Argo CD application controller service external traffic policy
287 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
289 externalTrafficPolicy: Cluster
290 ## @param controller.service.annotations Additional custom annotations for Argo CD application controller service
293 ## @param controller.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
296 ## @param controller.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
297 ## If "ClientIP", consecutive client requests will be directed to the same Pod
298 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
300 sessionAffinity: None
301 ## @param controller.service.sessionAffinityConfig Additional settings for the sessionAffinity
302 ## sessionAffinityConfig:
304 ## timeoutSeconds: 300
305 sessionAffinityConfig: {}
307 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
310 ## @param controller.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
313 ## @param controller.networkPolicy.allowExternal Don't require server label for connections
314 ## The Policy model to apply. When set to false, only pods with the correct
315 ## server label will have network access to the ports server is listening
316 ## on. When true, server will accept connections from any source
317 ## (with the correct destination port).
320 ## @param controller.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
322 allowExternalEgress: true
323 ## @param controller.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
325 kubeAPIServerPorts: [443, 6443, 8443]
326 ## @param controller.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
336 ## - matchExpressions:
342 ## @param controller.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true)
352 ## - matchExpressions:
359 ## @param controller.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
360 ## @param controller.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
362 ingressNSMatchLabels: {}
363 ingressNSPodMatchLabels: {}
364 ## Metrics configuration for Argo CD application controller
367 ## @param controller.metrics.enabled Enable Argo CD application controller metrics
371 ## @param controller.metrics.service.type Argo CD application controller service type
374 ## @param controller.metrics.service.ports.metrics Argo CD application controller metrics service port
378 ## Node ports to expose
379 ## @param controller.metrics.service.nodePorts.metrics Node port for the application controller service
380 ## NOTE: choose port between <30000-32767>
384 ## @param controller.metrics.service.clusterIP Argo CD application controller metrics service Cluster IP
389 ## @param controller.metrics.service.loadBalancerIP Argo CD application controller service Load Balancer IP
390 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
393 ## @param controller.metrics.service.loadBalancerSourceRanges Argo CD application controller service Load Balancer sources
394 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
396 ## loadBalancerSourceRanges:
399 loadBalancerSourceRanges: []
400 ## @param controller.metrics.service.externalTrafficPolicy Argo CD application controller service external traffic policy
401 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
403 externalTrafficPolicy: Cluster
404 ## @param controller.metrics.service.annotations Additional custom annotations for Argo CD application controller service
407 ## @param controller.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
408 ## If "ClientIP", consecutive client requests will be directed to the same Pod
409 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
411 sessionAffinity: None
412 ## @param controller.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
413 ## sessionAffinityConfig:
415 ## timeoutSeconds: 300
416 sessionAffinityConfig: {}
417 ## Argo CD application controller metrics service monitor configuration
420 ## @param controller.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator
423 ## @param controller.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
425 ## namespace: monitoring
428 ## @param controller.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
431 ## @param controller.metrics.serviceMonitor.interval Interval at which metrics should be scraped
432 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
435 ## @param controller.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
436 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
439 ## @param controller.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
440 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
443 ## @param controller.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
444 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
446 metricRelabelings: []
447 ## @param controller.metrics.serviceMonitor.selector ServiceMonitor selector labels
450 ## prometheus: my-prometheus
453 ## @param controller.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
456 ## Rules for PrometheusRule object if enabled
459 ## @param controller.metrics.rules.enabled Enable render extra rules for PrometheusRule object
460 ## @param controller.metrics.rules.spec Rules to render into the PrometheusRule object
461 ## @param controller.metrics.rules.selector Selector for the PrometheusRule object
462 ## @param controller.metrics.rules.namespace Namespace where to create the PrometheusRule object
463 ## @param controller.metrics.rules.additionalLabels Additional lables to add to the PrometheusRule object
468 ## - alert: ArgoAppMissing
470 ## absent(argocd_app_info)
473 ## severity: critical
475 ## summary: "[ArgoCD] No reported applications"
477 ## ArgoCD has not reported any applications data for the past 15 minutes which
478 ## means that it must be down or not functioning properly. This needs to be
479 ## resolved for this cloud to continue to maintain state.
480 ## - alert: ArgoAppNotSynced
482 ## argocd_app_info{sync_status!="Synced"} == 1
487 ## summary: "[{{`{{ $labels.name }}`}}] Application not synchronized"
489 ## The application [{{`{{ $labels.name }}`}} has not been synchronized for over
490 ## 12 hours which means that the state of this cloud has drifted away from the
496 ## prometheus: kube-prometheus
499 namespace: monitoring
501 ## @param controller.command Override default container command (useful when using custom images)
504 ## Arguments that will be used by default for the application controller
505 ## @param controller.defaultArgs.statusProcessors Default status processors for Argo CD controller
506 ## @param controller.defaultArgs.operationProcessors Default operation processors for Argo CD controller
507 ## @param controller.defaultArgs.appResyncPeriod Default application resync period for Argo CD controller
508 ## @param controller.defaultArgs.selfHealTimeout Default self heal timeout for Argo CD controller
511 statusProcessors: "20"
512 operationProcessors: "10"
513 appResyncPeriod: "180"
515 ## @param controller.args Override default container args (useful when using custom images). Overrides the defaultArgs.
518 ## @param controller.extraArgs Add extra arguments to the default arguments for the Argo CD controller
521 ## ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution/
523 dynamicClusterDistribution:
524 ## @param controller.dynamicClusterDistribution.enabled Whether dynamic cluster distribution is enabled.
527 ## @param controller.dynamicClusterDistribution.heartbeatDuration Time to update the cluster sharding (defaults to 10 seconds).
528 ## ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution/#working-of-dynamic-distribution
530 heartbeatDuration: ""
531 ## @param controller.automountServiceAccountToken Mount Service Account token in pod
533 automountServiceAccountToken: true
534 ## @param controller.hostAliases Argo CD pods host aliases
535 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
538 ## @param controller.podLabels Extra labels for Argo CD pods
539 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
542 ## @param controller.podAnnotations Annotations for Argo CD pods
543 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
546 ## @param controller.podAffinityPreset Pod affinity preset. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard`
547 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
549 podAffinityPreset: ""
550 ## @param controller.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard`
551 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
553 podAntiAffinityPreset: soft
554 ## Node controller.affinity preset
555 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
558 ## @param controller.nodeAffinityPreset.type Node affinity preset type. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard`
561 ## @param controller.nodeAffinityPreset.key Node label key to match. Ignored if `controller.affinity` is set
564 ## @param controller.nodeAffinityPreset.values Node label values to match. Ignored if `controller.affinity` is set
571 ## @param controller.affinity Affinity for Argo CD pods assignment
572 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
573 ## NOTE: `controller.podAffinityPreset`, `controller.podAntiAffinityPreset`, and `controller.nodeAffinityPreset` will be ignored when it's set
576 ## @param controller.nodeSelector Node labels for Argo CD pods assignment
577 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
580 ## @param controller.tolerations Tolerations for Argo CD pods assignment
581 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
584 ## @param controller.schedulerName Name of the k8s scheduler (other than default)
585 ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
588 ## @param controller.shareProcessNamespace Enable shared process namespace in a pod.
589 ## If set to false (default), each container will run in separate namespace, controller will have PID=1.
590 ## If set to true, the /pause will run as init process and will reap any zombie PIDs,
591 ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds.
592 ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating.
593 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
595 shareProcessNamespace: false
596 ## @param controller.topologySpreadConstraints Topology Spread Constraints for pod assignment
597 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
598 ## The value is evaluated as a template
600 topologySpreadConstraints: []
601 ## @param controller.updateStrategy.type Argo CD statefulset strategy type
602 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
606 ## Can be set to RollingUpdate or OnDelete
609 ## @param controller.priorityClassName Argo CD pods' priorityClassName
611 priorityClassName: ""
612 ## @param controller.runtimeClassName Name of the runtime class to be used by pod(s)
613 ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/
616 ## @param controller.lifecycleHooks for the Argo CD container(s) to automate configuration before or after startup
619 ## @param controller.podManagementPolicy podManagementPolicy to manage scaling operation of pods (only in StatefulSet mode)
620 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies
622 podManagementPolicy: ""
623 ## @param controller.extraEnvVars Array with extra environment variables to add to Argo CD nodes
630 ## @param controller.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD nodes
633 ## @param controller.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD nodes
635 extraEnvVarsSecret: ""
636 ## @param controller.extraVolumes Optionally specify extra list of additional volumes for the Argo CD pod(s)
639 ## @param controller.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD container(s)
641 extraVolumeMounts: []
642 ## @param controller.sidecars Add additional sidecar containers to the Argo CD pod(s)
645 ## - name: your-image-name
647 ## imagePullPolicy: Always
650 ## containerPort: 1234
653 ## @param controller.initContainers Add additional init containers to the Argo CD pod(s)
654 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
657 ## - name: your-image-name
659 ## imagePullPolicy: Always
660 ## command: ['sh', '-c', 'echo "hello world"']
663 ## Pod Disruption Budget configuration
664 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb
665 ## @param controller.pdb.create Enable/disable a Pod Disruption Budget creation
666 ## @param controller.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
667 ## @param controller.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `controller.pdb.minAvailable` and `controller.pdb.maxUnavailable` are empty.
673## @section Argo CD ApplicationSet controller parameters
675## ApplicationSet controller
678 ## @param applicationSet.enabled Enable ApplicationSet controller
681 ## @param applicationSet.replicaCount The number of ApplicationSet controller pods to run
684 ## @param applicationSet.command Override default container command (useful when using custom images)
687 ## Arguments that will be used by default for the application controller
688 ## @param applicationSet.defaultArgs.enableLeaderElection Enable leader election
689 ## @param applicationSet.defaultArgs.policy Default policy
690 ## @param applicationSet.defaultArgs.debug Enable debug mode
691 ## @param applicationSet.defaultArgs.dryRun Enable dry-run mode
694 enableLeaderElection: false
698 ## @param applicationSet.args Override default container args (useful when using custom images). Overrides the defaultArgs.
701 ## @param applicationSet.extraArgs Add extra arguments to the default arguments for the Argo CD applicationSet controller
704 ## Argo CD applicationSet controller log format: text|json
705 ## @param applicationSet.logFormat Format for the Argo CD applicationSet controller logs. Options: [text, json]
708 ## Argo CD applicationSet controller log level
709 ## @param applicationSet.logLevel Log level for the Argo CD applicationSet controller
712 ## Argo CD applicationSet controller ports
713 ## @param applicationSet.containerPorts.metrics Argo CD applicationSet controller metrics port number
714 ## @param applicationSet.containerPorts.probe Argo CD applicationSet controller probe port number
719 ## Metrics configuration for Argo CD applicationSet controller
722 ## @param applicationSet.metrics.enabled Enable Argo CD applicationSet controller metrics
726 ## @param applicationSet.metrics.service.type Argo CD applicationSet controller service type
729 ## @param applicationSet.metrics.service.ports.metrics Argo CD applicationSet controller metrics service port
733 ## Node ports to expose
734 ## @param applicationSet.metrics.service.nodePorts.metrics Node port for the applicationSet controller service
735 ## NOTE: choose port between <30000-32767>
739 ## @param applicationSet.metrics.service.clusterIP Argo CD applicationSet controller metrics service Cluster IP
744 ## @param applicationSet.metrics.service.loadBalancerIP Argo CD applicationSet controller service Load Balancer IP
745 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
748 ## @param applicationSet.metrics.service.loadBalancerSourceRanges Argo CD applicationSet controller service Load Balancer sources
749 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
751 ## loadBalancerSourceRanges:
754 loadBalancerSourceRanges: []
755 ## @param applicationSet.metrics.service.externalTrafficPolicy Argo CD applicationSet controller service external traffic policy
756 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
758 externalTrafficPolicy: Cluster
759 ## @param applicationSet.metrics.service.annotations Additional custom annotations for Argo CD applicationSet controller service
762 ## @param applicationSet.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
763 ## If "ClientIP", consecutive client requests will be directed to the same Pod
764 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
766 sessionAffinity: None
767 ## @param applicationSet.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
768 ## sessionAffinityConfig:
770 ## timeoutSeconds: 300
772 sessionAffinityConfig: {}
773 ## Argo CD applicationSet controller metrics service monitor configuration
776 ## @param applicationSet.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator
779 ## @param applicationSet.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
781 ## namespace: monitoring
784 ## @param applicationSet.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
787 ## @param applicationSet.metrics.serviceMonitor.interval Interval at which metrics should be scraped
788 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
791 ## @param applicationSet.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
792 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
795 ## @param applicationSet.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
796 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
799 ## @param applicationSet.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
800 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
802 metricRelabelings: []
803 ## @param applicationSet.metrics.serviceMonitor.selector ServiceMonitor selector labels
806 ## prometheus: my-prometheus
809 ## @param applicationSet.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
812 ## Argo CD applicationSet controller service parameters
815 ## @param applicationSet.service.type Argo CD applicationSet controller service type
818 ## @param applicationSet.service.ports.webhook Argo CD applicationSet controller service port
822 ## Node ports to expose
823 ## @param applicationSet.service.nodePorts.webhook Node port for Argo CD applicationSet controller service
824 ## NOTE: choose port between <30000-32767>
828 ## @param applicationSet.service.clusterIP Argo CD applicationSet controller service Cluster IP
833 ## @param applicationSet.service.loadBalancerIP Argo CD applicationSet controller service Load Balancer IP
834 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
837 ## @param applicationSet.service.loadBalancerSourceRanges Argo CD applicationSet controller service Load Balancer sources
838 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
840 ## loadBalancerSourceRanges:
843 loadBalancerSourceRanges: []
844 ## @param applicationSet.service.externalTrafficPolicy Argo CD applicationSet controller service external traffic policy
845 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
847 externalTrafficPolicy: Cluster
848 ## @param applicationSet.service.annotations Additional custom annotations for Argo CD applicationSet controller service
851 ## @param applicationSet.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
854 ## @param applicationSet.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
855 ## If "ClientIP", consecutive client requests will be directed to the same Pod
856 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
858 sessionAffinity: None
859 ## @param applicationSet.service.sessionAffinityConfig Additional settings for the sessionAffinity
860 ## sessionAffinityConfig:
862 ## timeoutSeconds: 300
864 sessionAffinityConfig: {}
866 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
869 ## @param applicationSet.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
872 ## @param applicationSet.networkPolicy.allowExternal Don't require server label for connections
873 ## The Policy model to apply. When set to false, only pods with the correct
874 ## server label will have network access to the ports server is listening
875 ## on. When true, server will accept connections from any source
876 ## (with the correct destination port).
879 ## @param applicationSet.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
881 allowExternalEgress: true
882 ## @param applicationSet.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
884 kubeAPIServerPorts: [443, 6443, 8443]
885 ## @param applicationSet.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
895 ## - matchExpressions:
901 ## @param applicationSet.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true)
911 ## - matchExpressions:
918 ## @param applicationSet.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
919 ## @param applicationSet.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
921 ingressNSMatchLabels: {}
922 ingressNSPodMatchLabels: {}
923 ## ServiceAccount configuration for the Argo CD applicationSet controller
926 ## @param applicationSet.serviceAccount.create Specifies whether a ServiceAccount should be created
929 ## @param applicationSet.serviceAccount.name The name of the ServiceAccount to use.
930 ## If not set and create is true, a name is generated using the common.names.fullname template
933 ## @param applicationSet.serviceAccount.automountServiceAccountToken Automount service account token for the applicationSet controller service account
935 automountServiceAccountToken: false
936 ## @param applicationSet.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
939 ## Enable admin clusterrole resources. Allows Argo CD applicationSet controller to have access to multiple namespaces
940 ## @param applicationSet.clusterAdminAccess Enable K8s cluster admin access for the application controller
942 clusterAdminAccess: false
943 ## Enable Custom Rules for Argo CD applicationSet controller cluster role
944 ## @param applicationSet.clusterRoleRules Use custom rules for Argo CD applicationSet controller's cluster role
947 ## @param applicationSet.podAffinityPreset Pod affinity preset. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard`
948 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
950 podAffinityPreset: ""
951 ## @param applicationSet.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard`
952 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
954 podAntiAffinityPreset: soft
955 ## Node applicationSet.affinity preset
956 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
959 ## @param applicationSet.nodeAffinityPreset.type Node affinity preset type. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard`
962 ## @param applicationSet.nodeAffinityPreset.key Node label key to match. Ignored if `applicationSet.affinity` is set
965 ## @param applicationSet.nodeAffinityPreset.values Node label values to match. Ignored if `applicationSet.affinity` is set
972 ## @param applicationSet.affinity Affinity for Argo CD applicationSet controller pods assignment
973 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
974 ## NOTE: `applicationSet.podAffinityPreset`, `applicationSet.podAntiAffinityPreset`, and `applicationSet.nodeAffinityPreset` will be ignored when it's set
977 ## @param applicationSet.podAnnotations Annotations for Argo CD applicationSet controller pods
978 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
981 ## @param applicationSet.podLabels Extra labels for Argo CD applicationSet controller pods
982 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
985 ## Configure Container Security Context
986 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
987 ## @param applicationSet.containerSecurityContext.enabled Enabled Argo CD applicationSet controller containers' Security Context
988 ## @param applicationSet.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
989 ## @param applicationSet.containerSecurityContext.runAsUser Set Argo CD applicationSet controller containers' Security Context runAsUser
990 ## @param applicationSet.containerSecurityContext.runAsGroup Set Argo CD applicationSet controller containers' Security Context runAsGroup
991 ## @param applicationSet.containerSecurityContext.allowPrivilegeEscalation Set Argo CD applicationSet controller containers' Security Context allowPrivilegeEscalation
992 ## @param applicationSet.containerSecurityContext.capabilities.drop Set Argo CD applicationSet controller containers' Security Context capabilities to be dropped
993 ## @param applicationSet.containerSecurityContext.readOnlyRootFilesystem Set Argo CD applicationSet controller containers' Security Context readOnlyRootFilesystem
994 ## @param applicationSet.containerSecurityContext.runAsNonRoot Set Argo CD applicationSet controller container's Security Context runAsNonRoot
995 ## @param applicationSet.containerSecurityContext.privileged Set applicationSet container's Security Context privileged
996 ## @param applicationSet.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
998 containerSecurityContext:
1004 readOnlyRootFilesystem: true
1005 allowPrivilegeEscalation: false
1010 type: "RuntimeDefault"
1011 ## @param applicationSet.livenessProbe.enabled Enable livenessProbe on Argo CD applicationSet controller nodes
1012 ## @param applicationSet.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
1013 ## @param applicationSet.livenessProbe.periodSeconds Period seconds for livenessProbe
1014 ## @param applicationSet.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
1015 ## @param applicationSet.livenessProbe.failureThreshold Failure threshold for livenessProbe
1016 ## @param applicationSet.livenessProbe.successThreshold Success threshold for livenessProbe
1020 initialDelaySeconds: 10
1025 ## @param applicationSet.readinessProbe.enabled Enable readinessProbe on Argo CD applicationSet controller nodes
1026 ## @param applicationSet.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
1027 ## @param applicationSet.readinessProbe.periodSeconds Period seconds for readinessProbe
1028 ## @param applicationSet.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
1029 ## @param applicationSet.readinessProbe.failureThreshold Failure threshold for readinessProbe
1030 ## @param applicationSet.readinessProbe.successThreshold Success threshold for readinessProbe
1034 initialDelaySeconds: 10
1039 ## @param applicationSet.customLivenessProbe Custom livenessProbe that overrides the default one
1041 customLivenessProbe: {}
1042 ## @param applicationSet.customReadinessProbe Custom readinessProbe that overrides the default one
1044 customReadinessProbe: {}
1045 ## Argo CD applicationSet controller resource requests and limits
1046 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
1047 ## @param applicationSet.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if applicationSet.resources is set (applicationSet.resources is recommended for production).
1049 resourcesPreset: "nano"
1050 ## @param applicationSet.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
1061 ## Configure Pods Security Context
1062 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
1063 ## @param applicationSet.podSecurityContext.enabled Enabled Argo CD applicationSet controller pods' Security Context
1064 ## @param applicationSet.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
1065 ## @param applicationSet.podSecurityContext.sysctls Set kernel settings using the sysctl interface
1066 ## @param applicationSet.podSecurityContext.supplementalGroups Set filesystem extra groups
1067 ## @param applicationSet.podSecurityContext.fsGroup Set Argo CD applicationSet controller pod's Security Context fsGroup
1071 fsGroupChangePolicy: Always
1073 supplementalGroups: []
1075 ## @param applicationSet.nodeSelector Node labels for Argo CD applicationSet controller pods assignment
1076 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
1079 ## @param applicationSet.tolerations Tolerations for Argo CD applicationSet controller pods assignment
1080 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
1083 ## @param applicationSet.updateStrategy.type Argo CD applicationSet controller statefulset strategy type
1084 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
1088 ## Can be set to RollingUpdate or OnDelete
1091 ## @param applicationSet.priorityClassName Argo CD applicationSet controller pods' priorityClassName
1093 priorityClassName: ""
1094 ## @param applicationSet.extraVolumes Optionally specify extra list of additional volumes for the Argo CD applicationSet controller pod(s)
1097 ## @param applicationSet.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD applicationSet controller container(s)
1099 extraVolumeMounts: []
1100 ## @param applicationSet.extraEnvVars Array with extra environment variables to add to Argo CD applicationSet controller nodes
1107 ## @param applicationSet.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD applicationSet controller nodes
1110 ## @param applicationSet.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD applicationSet controller nodes
1112 extraEnvVarsSecret: ""
1113 ## Webhook for the Git Generator
1114 ## Ref: https://argocd-applicationset.readthedocs.io/en/master/Generators-Git/#webhook-configuration)
1118 ## @param applicationSet.webhook.ingress.enabled Enable an ingress resource for Webhooks
1121 ## @param applicationSet.webhook.ingress.annotations Additional ingress annotations
1124 ## @param applicationSet.webhook.ingress.labels Additional ingress labels
1127 ## @param applicationSet.webhook.ingress.ingressClassName Defines which ingress controller will implement the resource
1129 ingressClassName: ""
1130 ## @param applicationSet.webhook.ingress.hostname Ingress hostname for the Argo CD applicationSet ingress
1131 ## Hostname must be provided if Ingress is enabled.
1134 ## @param applicationSet.webhook.ingress.path Argo CD applicationSet ingress path
1137 ## @param applicationSet.webhook.ingress.pathType Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific`
1140 ## @param applicationSet.webhook.ingress.extraHosts Extra hosts array for the Argo CD applicationSet ingress
1141 ## The list of additional hostnames to be covered with this ingress record.
1142 ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
1145 ## @param applicationSet.webhook.ingress.extraPaths Extra paths for the Argo CD applicationSet ingress
1146 ## Any additional arbitrary paths that may need to be added to the ingress under the main host.
1147 ## For example: The ALB ingress controller requires a special rule for handling SSL redirection.
1152 ## serviceName: ssl-redirect
1153 ## servicePort: use-annotation
1155 ## @param applicationSet.webhook.ingress.extraTls Extra TLS configuration for the Argo CD applicationSet ingress
1156 ## The tls configuration for additional hostnames to be covered with this ingress record.
1157 ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
1161 ## - argocd.server.local
1162 ## secretName: argocd.server.local-tls
1164 ## @param applicationSet.webhook.ingress.tls Ingress TLS configuration
1167 ## Pod Disruption Budget configuration
1168 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb
1169 ## @param applicationSet.pdb.create Enable/disable a Pod Disruption Budget creation
1170 ## @param applicationSet.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
1171 ## @param applicationSet.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `controller.pdb.minAvailable` and `controller.pdb.maxUnavailable` are empty.
1177## @section Argo CD notifications controller parameters
1179## notifications controller
1182 ## @param notifications.enabled Enable notifications controller
1185 ## @param notifications.command Override default container command (useful when using custom images)
1188 ## @param notifications.args Override default container args (useful when using custom images).
1191 ## @param notifications.extraArgs Add extra arguments to the default arguments for the Argo CD notifications controller
1194 ## @param notifications.automountServiceAccountToken Mount Service Account token in pod
1196 automountServiceAccountToken: true
1197 ## Argo CD notifications controller log format: text|json
1198 ## @param notifications.logFormat Format for the Argo CD notifications controller logs. Options: [text, json]
1201 ## Argo CD notifications controller log level
1202 ## @param notifications.logLevel Log level for the Argo CD notifications controller
1205 ## Argo CD notifications controller ports
1206 ## @param notifications.containerPorts.metrics Argo CD notifications controller metrics port number
1210 ## Metrics configuration for Argo CD notifications controller
1213 ## @param notifications.metrics.enabled Enable Argo CD notifications controller metrics
1217 ## @param notifications.metrics.service.type Argo CD notifications controller service type
1220 ## @param notifications.metrics.service.ports.metrics Argo CD notifications controller metrics service port
1224 ## Node ports to expose
1225 ## @param notifications.metrics.service.nodePorts.metrics Node port for the notifications controller service
1226 ## NOTE: choose port between <30000-32767>
1230 ## @param notifications.metrics.service.clusterIP Argo CD notifications controller metrics service Cluster IP
1235 ## @param notifications.metrics.service.loadBalancerIP Argo CD notifications controller service Load Balancer IP
1236 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
1239 ## @param notifications.metrics.service.loadBalancerSourceRanges Argo CD notifications controller service Load Balancer sources
1240 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
1242 ## loadBalancerSourceRanges:
1245 loadBalancerSourceRanges: []
1246 ## @param notifications.metrics.service.externalTrafficPolicy Argo CD notifications controller service external traffic policy
1247 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
1249 externalTrafficPolicy: Cluster
1250 ## @param notifications.metrics.service.annotations Additional custom annotations for Argo CD notifications controller service
1253 ## @param notifications.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
1254 ## If "ClientIP", consecutive client requests will be directed to the same Pod
1255 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
1257 sessionAffinity: None
1258 ## @param notifications.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
1259 ## sessionAffinityConfig:
1261 ## timeoutSeconds: 300
1263 sessionAffinityConfig: {}
1264 ## Argo CD notifications controller metrics service monitor configuration
1267 ## @param notifications.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator
1270 ## @param notifications.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
1272 ## namespace: monitoring
1275 ## @param notifications.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
1278 ## @param notifications.metrics.serviceMonitor.interval Interval at which metrics should be scraped
1279 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
1282 ## @param notifications.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
1283 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
1286 ## @param notifications.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
1287 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
1290 ## @param notifications.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
1291 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
1293 metricRelabelings: []
1294 ## @param notifications.metrics.serviceMonitor.selector ServiceMonitor selector labels
1297 ## prometheus: my-prometheus
1300 ## @param notifications.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
1304 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
1307 ## @param notifications.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
1310 ## @param notifications.networkPolicy.allowExternal Don't require server label for connections
1311 ## The Policy model to apply. When set to false, only pods with the correct
1312 ## server label will have network access to the ports server is listening
1313 ## on. When true, server will accept connections from any source
1314 ## (with the correct destination port).
1317 ## @param notifications.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
1319 allowExternalEgress: true
1320 ## @param notifications.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
1322 kubeAPIServerPorts: [443, 6443, 8443]
1323 ## @param notifications.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
1333 ## - matchExpressions:
1339 ## @param notifications.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true)
1349 ## - matchExpressions:
1356 ## @param notifications.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
1357 ## @param notifications.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
1359 ingressNSMatchLabels: {}
1360 ingressNSPodMatchLabels: {}
1361 ## ServiceAccount configuration for the Argo CD notifications controller
1364 ## @param notifications.serviceAccount.create Specifies whether a ServiceAccount should be created
1367 ## @param notifications.serviceAccount.name The name of the ServiceAccount to use.
1368 ## If not set and create is true, a name is generated using the common.names.fullname template
1371 ## @param notifications.serviceAccount.automountServiceAccountToken Automount service account token for the notifications controller service account
1373 automountServiceAccountToken: false
1374 ## @param notifications.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
1377 ## Enable admin clusterrole resources. Allows Argo CD notifications controller to have access to multiple namespaces
1378 ## @param notifications.clusterAdminAccess Enable K8s cluster admin access for the notifications controller
1380 clusterAdminAccess: false
1381 ## Enable Custom Rules for Argo CD notifications controller cluster role
1382 ## @param notifications.clusterRoleRules Use custom rules for notifications controller's cluster role
1384 clusterRoleRules: []
1385 ## @param notifications.podAffinityPreset Pod affinity preset. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard`
1386 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
1388 podAffinityPreset: ""
1389 ## @param notifications.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard`
1390 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
1392 podAntiAffinityPreset: soft
1393 ## Node notifications.affinity preset
1394 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
1397 ## @param notifications.nodeAffinityPreset.type Node affinity preset type. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard`
1400 ## @param notifications.nodeAffinityPreset.key Node label key to match. Ignored if `notifications.affinity` is set
1403 ## @param notifications.nodeAffinityPreset.values Node label values to match. Ignored if `notifications.affinity` is set
1410 ## @param notifications.affinity Affinity for Argo CD notifications controller pods assignment
1411 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
1412 ## NOTE: `notifications.podAffinityPreset`, `notifications.podAntiAffinityPreset`, and `notifications.nodeAffinityPreset` will be ignored when it's set
1415 ## @param notifications.podAnnotations Annotations for Argo CD notifications controller pods
1416 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
1419 ## @param notifications.podLabels Extra labels for Argo CD notifications controller pods
1420 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
1423 ## Configure Container Security Context
1424 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
1425 ## @param notifications.containerSecurityContext.enabled Enabled Argo CD notifications controller containers' Security Context
1426 ## @param notifications.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
1427 ## @param notifications.containerSecurityContext.runAsUser Set Argo CD notifications controller containers' Security Context runAsUser
1428 ## @param notifications.containerSecurityContext.runAsGroup Set Argo CD notifications controller containers' Security Context runAsGroup
1429 ## @param notifications.containerSecurityContext.allowPrivilegeEscalation Set Argo CD notifications controller containers' Security Context allowPrivilegeEscalation
1430 ## @param notifications.containerSecurityContext.capabilities.drop Set Argo CD notifications controller containers' Security Context capabilities to be dropped
1431 ## @param notifications.containerSecurityContext.readOnlyRootFilesystem Set Argo CD notifications controller containers' Security Context readOnlyRootFilesystem
1432 ## @param notifications.containerSecurityContext.runAsNonRoot Set Argo CD notifications controller container's Security Context runAsNonRoot
1433 ## @param notifications.containerSecurityContext.privileged Set notifications container's Security Context privileged
1434 ## @param notifications.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
1436 containerSecurityContext:
1442 readOnlyRootFilesystem: true
1443 allowPrivilegeEscalation: false
1448 type: "RuntimeDefault"
1449 ## Argo CD notifications controller resource requests and limits
1450 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
1451 ## @param notifications.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if notifications.resources is set (notifications.resources is recommended for production).
1453 resourcesPreset: "nano"
1454 ## @param notifications.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
1465 ## Configure Pods Security Context
1466 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
1467 ## @param notifications.podSecurityContext.enabled Enabled Argo CD notifications controller pods' Security Context
1468 ## @param notifications.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
1469 ## @param notifications.podSecurityContext.sysctls Set kernel settings using the sysctl interface
1470 ## @param notifications.podSecurityContext.supplementalGroups Set filesystem extra groups
1471 ## @param notifications.podSecurityContext.fsGroup Set Argo CD notifications controller pod's Security Context fsGroup
1475 fsGroupChangePolicy: Always
1477 supplementalGroups: []
1479 ## @param notifications.nodeSelector Node labels for Argo CD notifications controller pods assignment
1480 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
1483 ## @param notifications.tolerations Tolerations for Argo CD notifications controller pods assignment
1484 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
1487 ## @param notifications.priorityClassName Argo CD notifications controller pods' priorityClassName
1489 priorityClassName: ""
1490 ## @param notifications.extraVolumes Optionally specify extra list of additional volumes for the Argo CD notifications controller pod(s)
1493 ## @param notifications.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD notifications controller container(s)
1495 extraVolumeMounts: []
1496 ## @param notifications.extraEnvVars Array with extra environment variables to add to Argo CD notifications controller nodes
1503 ## @param notifications.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD notifications controller nodes
1506 ## @param notifications.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD notifications controller nodes
1508 extraEnvVarsSecret: ""
1509 ## Configure extra options for Notification containers' liveness and readiness probes
1510 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
1511 ## @param notifications.startupProbe.enabled Enable startupProbe on Notification nodes
1512 ## @param notifications.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
1513 ## @param notifications.startupProbe.periodSeconds Period seconds for startupProbe
1514 ## @param notifications.startupProbe.timeoutSeconds Timeout seconds for startupProbe
1515 ## @param notifications.startupProbe.failureThreshold Failure threshold for startupProbe
1516 ## @param notifications.startupProbe.successThreshold Success threshold for startupProbe
1520 initialDelaySeconds: 10
1525 ## @param notifications.livenessProbe.enabled Enable livenessProbe on Notification nodes
1526 ## @param notifications.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
1527 ## @param notifications.livenessProbe.periodSeconds Period seconds for livenessProbe
1528 ## @param notifications.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
1529 ## @param notifications.livenessProbe.failureThreshold Failure threshold for livenessProbe
1530 ## @param notifications.livenessProbe.successThreshold Success threshold for livenessProbe
1534 initialDelaySeconds: 10
1539 ## @param notifications.readinessProbe.enabled Enable readinessProbe on Notification nodes
1540 ## @param notifications.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
1541 ## @param notifications.readinessProbe.periodSeconds Period seconds for readinessProbe
1542 ## @param notifications.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
1543 ## @param notifications.readinessProbe.failureThreshold Failure threshold for readinessProbe
1544 ## @param notifications.readinessProbe.successThreshold Success threshold for readinessProbe
1548 initialDelaySeconds: 10
1553 ## @param notifications.customStartupProbe Custom startupProbe that overrides the default one
1555 customStartupProbe: {}
1556 ## @param notifications.customLivenessProbe Custom livenessProbe that overrides the default one
1558 customLivenessProbe: {}
1559 ## @param notifications.customReadinessProbe Custom readinessProbe that overrides the default one
1561 customReadinessProbe: {}
1562 ## Webhook for the Git Generator
1563 ## Ref: https://argocd-notifications.readthedocs.io/en/master/Generators-Git/#webhook-configuration)
1567 ## @param notifications.webhook.ingress.enabled Enable an ingress resource for Webhooks
1570 ## @param notifications.webhook.ingress.annotations Additional ingress annotations
1573 ## @param notifications.webhook.ingress.labels Additional ingress labels
1576 ## @param notifications.webhook.ingress.ingressClassName Defines which ingress controller will implement the resource
1578 ingressClassName: ""
1579 ## @param notifications.webhook.ingress.hostname Ingress hostname for the Argo CD notifications ingress
1580 ## Hostname must be provided if Ingress is enabled.
1583 ## @param notifications.webhook.ingress.path Argo CD notifications ingress path
1586 ## @param notifications.webhook.ingress.pathType Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific`
1589 ## @param notifications.webhook.ingress.extraHosts Extra hosts array for the Argo CD notifications ingress
1590 ## The list of additional hostnames to be covered with this ingress record.
1591 ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
1594 ## @param notifications.webhook.ingress.extraPaths Extra paths for the Argo CD notifications ingress
1595 ## Any additional arbitrary paths that may need to be added to the ingress under the main host.
1596 ## For example: The ALB ingress controller requires a special rule for handling SSL redirection.
1601 ## serviceName: ssl-redirect
1602 ## servicePort: use-annotation
1604 ## @param notifications.webhook.ingress.extraTls Extra TLS configuration for the Argo CD notifications ingress
1605 ## The tls configuration for additional hostnames to be covered with this ingress record.
1606 ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
1610 ## - argocd.server.local
1611 ## secretName: argocd.server.local-tls
1613 ## @param notifications.webhook.ingress.tls Ingress TLS configuration
1616 ## The optional bot component simplifies managing subscriptions
1617 ## For more information: https://argocd-notifications.readthedocs.io/en/stable/bots/overview/
1620 ## @param notifications.bots.slack.enabled Enable notifications controller
1623 ## @param notifications.bots.slack.command Override default container command (useful when using custom images)
1626 ## @param notifications.bots.slack.args Override default container args (useful when using custom images).
1629 ## @param notifications.bots.slack.extraArgs Add extra arguments to the default arguments for the Argo CD Slack bot
1632 ## Argo CD Slack bot service parameters
1635 ## @param notifications.bots.slack.service.type Argo CD Slack bot service type
1638 ## @param notifications.bots.slack.service.ports.http Argo CD Slack bot service port
1642 ## Node ports to expose
1643 ## @param notifications.bots.slack.service.nodePorts.http Node port for Argo CD Slack bot service
1644 ## NOTE: choose port between <30000-32767>
1648 ## @param notifications.bots.slack.service.clusterIP Argo CD Slack bot service Cluster IP
1653 ## @param notifications.bots.slack.service.loadBalancerIP Argo CD Slack bot service Load Balancer IP
1654 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
1657 ## @param notifications.bots.slack.service.loadBalancerSourceRanges Argo CD Slack bot service Load Balancer sources
1658 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
1660 ## loadBalancerSourceRanges:
1663 loadBalancerSourceRanges: []
1664 ## @param notifications.bots.slack.service.externalTrafficPolicy Argo CD Slack bot service external traffic policy
1665 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
1667 externalTrafficPolicy: Cluster
1668 ## @param notifications.bots.slack.service.annotations Additional custom annotations for Argo CD Slack bot service
1671 ## @param notifications.bots.slack.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
1674 ## @param notifications.bots.slack.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
1675 ## If "ClientIP", consecutive client requests will be directed to the same Pod
1676 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
1678 sessionAffinity: None
1679 ## @param notifications.bots.slack.service.sessionAffinityConfig Additional settings for the sessionAffinity
1680 ## sessionAffinityConfig:
1682 ## timeoutSeconds: 300
1684 sessionAffinityConfig: {}
1686 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
1689 ## @param notifications.bots.slack.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
1692 ## @param notifications.bots.slack.networkPolicy.allowExternal Don't require server label for connections
1693 ## The Policy model to apply. When set to false, only pods with the correct
1694 ## server label will have network access to the ports server is listening
1695 ## on. When true, server will accept connections from any source
1696 ## (with the correct destination port).
1699 ## @param notifications.bots.slack.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
1701 allowExternalEgress: true
1702 ## @param notifications.bots.slack.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
1704 kubeAPIServerPorts: [443, 6443, 8443]
1705 ## @param notifications.bots.slack.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
1715 ## - matchExpressions:
1721 ## @param notifications.bots.slack.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true)
1731 ## - matchExpressions:
1738 ## @param notifications.bots.slack.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
1739 ## @param notifications.bots.slack.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
1741 ingressNSMatchLabels: {}
1742 ingressNSPodMatchLabels: {}
1743 ## ServiceAccount configuration for the Argo CD Slack bot
1746 ## @param notifications.bots.slack.serviceAccount.create Specifies whether a ServiceAccount should be created
1749 ## @param notifications.bots.slack.serviceAccount.name The name of the ServiceAccount to use.
1750 ## If not set and create is true, a name is generated using the common.names.fullname template
1753 ## @param notifications.bots.slack.serviceAccount.automountServiceAccountToken Automount service account token for the notifications controller service account
1755 automountServiceAccountToken: false
1756 ## @param notifications.bots.slack.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
1759 ## @param notifications.bots.slack.podAffinityPreset Pod affinity preset. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard`
1760 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
1762 podAffinityPreset: ""
1763 ## @param notifications.bots.slack.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard`
1764 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
1766 podAntiAffinityPreset: soft
1767 ## Node notifications.bots.slack.affinity preset
1768 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
1771 ## @param notifications.bots.slack.nodeAffinityPreset.type Node affinity preset type. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard`
1774 ## @param notifications.bots.slack.nodeAffinityPreset.key Node label key to match. Ignored if `notifications.bots.slack.affinity` is set
1777 ## @param notifications.bots.slack.nodeAffinityPreset.values Node label values to match. Ignored if `notifications.bots.slack.affinity` is set
1784 ## Argo CD Slack Bot controller ports
1785 ## @param notifications.bots.slack.containerPorts.metrics Slack Bot controller metrics port number
1789 ## Configure extra options for Slack Bot containers' liveness and readiness probes
1790 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
1791 ## @param notifications.bots.slack.startupProbe.enabled Enable startupProbe on Slack Bot nodes
1792 ## @param notifications.bots.slack.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
1793 ## @param notifications.bots.slack.startupProbe.periodSeconds Period seconds for startupProbe
1794 ## @param notifications.bots.slack.startupProbe.timeoutSeconds Timeout seconds for startupProbe
1795 ## @param notifications.bots.slack.startupProbe.failureThreshold Failure threshold for startupProbe
1796 ## @param notifications.bots.slack.startupProbe.successThreshold Success threshold for startupProbe
1800 initialDelaySeconds: 10
1805 ## @param notifications.bots.slack.livenessProbe.enabled Enable livenessProbe on Slack Bot nodes
1806 ## @param notifications.bots.slack.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
1807 ## @param notifications.bots.slack.livenessProbe.periodSeconds Period seconds for livenessProbe
1808 ## @param notifications.bots.slack.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
1809 ## @param notifications.bots.slack.livenessProbe.failureThreshold Failure threshold for livenessProbe
1810 ## @param notifications.bots.slack.livenessProbe.successThreshold Success threshold for livenessProbe
1814 initialDelaySeconds: 10
1819 ## @param notifications.bots.slack.readinessProbe.enabled Enable readinessProbe on Slack Bot nodes
1820 ## @param notifications.bots.slack.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
1821 ## @param notifications.bots.slack.readinessProbe.periodSeconds Period seconds for readinessProbe
1822 ## @param notifications.bots.slack.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
1823 ## @param notifications.bots.slack.readinessProbe.failureThreshold Failure threshold for readinessProbe
1824 ## @param notifications.bots.slack.readinessProbe.successThreshold Success threshold for readinessProbe
1828 initialDelaySeconds: 10
1833 ## @param notifications.bots.slack.customStartupProbe Custom startupProbe that overrides the default one
1835 customStartupProbe: {}
1836 ## @param notifications.bots.slack.customLivenessProbe Custom livenessProbe that overrides the default one
1838 customLivenessProbe: {}
1839 ## @param notifications.bots.slack.customReadinessProbe Custom readinessProbe that overrides the default one
1841 customReadinessProbe: {}
1842 ## @param notifications.bots.slack.affinity Affinity for Argo CD Slack bot pods assignment
1843 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
1844 ## NOTE: `notifications.bots.slack.podAffinityPreset`, `notifications.bots.slack.podAntiAffinityPreset`, and `notifications.bots.slack.nodeAffinityPreset` will be ignored when it's set
1847 ## @param notifications.bots.slack.podAnnotations Annotations for Argo CD Slack bot pods
1848 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
1851 ## @param notifications.bots.slack.podLabels Extra labels for Argo CD Slack bot pods
1852 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
1855 ## Configure Container Security Context
1856 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
1857 ## @param notifications.bots.slack.containerSecurityContext.enabled Enabled Argo CD Slack bot containers' Security Context
1858 ## @param notifications.bots.slack.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
1859 ## @param notifications.bots.slack.containerSecurityContext.runAsUser Set Argo CD Slack bot containers' Security Context runAsUser
1860 ## @param notifications.bots.slack.containerSecurityContext.runAsGroup Set Argo CD Slack bot containers' Security Context runAsGroup
1861 ## @param notifications.bots.slack.containerSecurityContext.allowPrivilegeEscalation Set Argo CD Slack bot containers' Security Context allowPrivilegeEscalation
1862 ## @param notifications.bots.slack.containerSecurityContext.capabilities.drop Set Argo CD Slack bot containers' Security Context capabilities to be dropped
1863 ## @param notifications.bots.slack.containerSecurityContext.readOnlyRootFilesystem Set Argo CD Slack bot containers' Security Context readOnlyRootFilesystem
1864 ## @param notifications.bots.slack.containerSecurityContext.runAsNonRoot Set Argo CD Slack bot container's Security Context runAsNonRoot
1865 ## @param notifications.bots.slack.containerSecurityContext.privileged Set notifications container's Security Context privileged
1866 ## @param notifications.bots.slack.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
1868 containerSecurityContext:
1874 readOnlyRootFilesystem: true
1875 allowPrivilegeEscalation: false
1880 type: "RuntimeDefault"
1881 ## Argo CD Slack bot resource requests and limits
1882 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
1883 ## @param notifications.bots.slack.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if notifications.bots.slack.resources is set (notifications.bots.slack.resources is recommended for production).
1885 resourcesPreset: "nano"
1886 ## @param notifications.bots.slack.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
1897 ## Configure Pods Security Context
1898 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
1899 ## @param notifications.bots.slack.podSecurityContext.enabled Enabled Argo CD Slack bot pods' Security Context
1900 ## @param notifications.bots.slack.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
1901 ## @param notifications.bots.slack.podSecurityContext.sysctls Set kernel settings using the sysctl interface
1902 ## @param notifications.bots.slack.podSecurityContext.supplementalGroups Set filesystem extra groups
1903 ## @param notifications.bots.slack.podSecurityContext.fsGroup Set Argo CD Slack bot pod's Security Context fsGroup
1907 fsGroupChangePolicy: Always
1909 supplementalGroups: []
1911 ## @param notifications.bots.slack.nodeSelector Node labels for Argo CD Slack bot pods assignment
1912 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
1915 ## @param notifications.bots.slack.tolerations Tolerations for Argo CD Slack bot pods assignment
1916 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
1919 ## @param notifications.bots.slack.priorityClassName Argo CD Slack bot pods' priorityClassName
1921 priorityClassName: ""
1922 ## @param notifications.bots.slack.extraVolumes Optionally specify extra list of additional volumes for the Argo CD Slack bot pod(s)
1925 ## @param notifications.bots.slack.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD Slack bot container(s)
1927 extraVolumeMounts: []
1928 ## @param notifications.bots.slack.extraEnvVars Array with extra environment variables to add to Argo CD Slack bot nodes
1935 ## @param notifications.bots.slack.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD Slack bot nodes
1938 ## @param notifications.bots.slack.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD Slack bot nodes
1940 extraEnvVarsSecret: ""
1941 ## Pod Disruption Budget configuration
1942 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb
1943 ## @param notifications.pdb.create Enable/disable a Pod Disruption Budget creation
1944 ## @param notifications.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
1945 ## @param notifications.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `notifications.pdb.minAvailable` and `notifications.pdb.maxUnavailable` are empty.
1951## @section Argo CD server Parameters
1953## Argo CD server configuration
1956 ## @param server.replicaCount Number of Argo CD server replicas to deploy
1959 ## Configure extra options for Argo CD server containers' liveness and readiness probes
1960 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
1961 ## @param server.startupProbe.enabled Enable startupProbe on Argo CD server nodes
1962 ## @param server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
1963 ## @param server.startupProbe.periodSeconds Period seconds for startupProbe
1964 ## @param server.startupProbe.timeoutSeconds Timeout seconds for startupProbe
1965 ## @param server.startupProbe.failureThreshold Failure threshold for startupProbe
1966 ## @param server.startupProbe.successThreshold Success threshold for startupProbe
1970 initialDelaySeconds: 10
1975 ## @param server.livenessProbe.enabled Enable livenessProbe on Argo CD server nodes
1976 ## @param server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
1977 ## @param server.livenessProbe.periodSeconds Period seconds for livenessProbe
1978 ## @param server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
1979 ## @param server.livenessProbe.failureThreshold Failure threshold for livenessProbe
1980 ## @param server.livenessProbe.successThreshold Success threshold for livenessProbe
1984 initialDelaySeconds: 10
1989 ## @param server.readinessProbe.enabled Enable readinessProbe on Argo CD server nodes
1990 ## @param server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
1991 ## @param server.readinessProbe.periodSeconds Period seconds for readinessProbe
1992 ## @param server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
1993 ## @param server.readinessProbe.failureThreshold Failure threshold for readinessProbe
1994 ## @param server.readinessProbe.successThreshold Success threshold for readinessProbe
1998 initialDelaySeconds: 10
2003 ## @param server.customStartupProbe Custom startupProbe that overrides the default one
2005 customStartupProbe: {}
2006 ## @param server.customLivenessProbe Custom livenessProbe that overrides the default one
2008 customLivenessProbe: {}
2009 ## @param server.customReadinessProbe Custom readinessProbe that overrides the default one
2011 customReadinessProbe: {}
2012 ## Argo CD server resource requests and limits
2013 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
2014 ## @param server.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if server.resources is set (server.resources is recommended for production).
2016 resourcesPreset: "nano"
2017 ## @param server.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
2028 ## Configure Pods Security Context
2029 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
2030 ## @param server.podSecurityContext.enabled Enabled Argo CD server pods' Security Context
2031 ## @param server.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
2032 ## @param server.podSecurityContext.sysctls Set kernel settings using the sysctl interface
2033 ## @param server.podSecurityContext.supplementalGroups Set filesystem extra groups
2034 ## @param server.podSecurityContext.fsGroup Set Argo CD server pod's Security Context fsGroup
2038 fsGroupChangePolicy: Always
2040 supplementalGroups: []
2042 ## Configure Container Security Context
2043 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
2044 ## @param server.containerSecurityContext.enabled Enabled Argo CD server containers' Security Context
2045 ## @param server.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
2046 ## @param server.containerSecurityContext.runAsUser Set Argo CD server containers' Security Context runAsUser
2047 ## @param server.containerSecurityContext.runAsGroup Set Argo CD server containers' Security Context runAsGroup
2048 ## @param server.containerSecurityContext.allowPrivilegeEscalation Set Argo CD server containers' Security Context allowPrivilegeEscalation
2049 ## @param server.containerSecurityContext.capabilities.drop Set Argo CD containers' server Security Context capabilities to be dropped
2050 ## @param server.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' server Security Context readOnlyRootFilesystem
2051 ## @param server.containerSecurityContext.runAsNonRoot Set Argo CD server containers' Security Context runAsNonRoot
2052 ## @param server.containerSecurityContext.privileged Set server container's Security Context privileged
2053 ## @param server.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
2055 containerSecurityContext:
2061 readOnlyRootFilesystem: true
2062 allowPrivilegeEscalation: false
2067 type: "RuntimeDefault"
2068 ## Argo CD server deployment autoscaling
2069 ## @param server.autoscaling.enabled Enable Argo CD server deployment autoscaling
2070 ## @param server.autoscaling.minReplicas Argo CD server deployment autoscaling minimum number of replicas
2071 ## @param server.autoscaling.maxReplicas Argo CD server deployment autoscaling maximum number of replicas
2072 ## @param server.autoscaling.targetCPU Argo CD server deployment autoscaling target CPU percentage
2073 ## @param server.autoscaling.targetMemory Argo CD server deployment autoscaling target CPU memory
2081 ## Redirect all request to https
2082 ## @param server.insecure Disable HTTPS redirection for Argo CD server
2085 ## @param server.logFormat ArgoCD server logs format. Options: [text, json]
2088 ## @param server.logLevel ArgoCD server logs level
2091 ## Argo CD server enable config
2092 ## @param server.configEnabled Enable Argo CD server config
2093 ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cm.yaml
2096 ## Argo CD server URL
2097 ## @param server.url Argo CD server base URL. Required when configuring SSO. Required when enabling dex.
2100 ## Argo CD server config. This object will be directly rendered
2101 ## @param server.config [object] Argo CD server configuration that will end on the argocd-cm Config Map
2102 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/
2105 ## - url: git@github.com:group/repo.git
2106 ## sshPrivateKeySecret:
2107 ## name: secret-name
2108 ## key: sshPrivateKey
2110 ## url: https://charts.helm.sh/stable
2113 ## url: https://argoproj.github.io/argo-helm
2117 ## issuer: https://login.microsoftonline.com/TENANT_ID/v2.0
2118 ## clientID: CLIENT_ID
2119 ## clientSecret: $oidc.azuread.clientSecret
2120 ## requestedIDTokenClaims:
2134 ## clientID: aabbccddeeff00112233
2135 ## clientSecret: $dex.github.clientSecret
2137 ## - name: your-github-org
2139 ## Argo CD external base URL. Required when configuring SSO. Required when enabling dex.
2141 ## url: https://argocd.example.com
2143 url: "{{ .Values.server.url }}"
2144 ## Argo CD instance label key
2146 application.instanceLabelKey: argocd.argoproj.io/instance
2147 ## If Dex is enabled you need to add connectors here
2152 ## Configure the ingress for the Argo CD server
2153 ## Ref: https://kubernetes.io/docs/concepts/services-networking/ingress/
2154 ## @param server.ingress.enabled Enable the creation of an ingress for the Argo CD server
2155 ## @param server.ingress.pathType Path type for the Argo CD server ingress
2156 ## @param server.ingress.apiVersion Ingress API version for the Argo CD server ingress
2157 ## @param server.ingress.hostname Ingress hostname for the Argo CD server ingress
2158 ## @param server.ingress.annotations Annotations for the Argo CD server ingress. To enable certificate autogeneration, place here your cert-manager annotations.
2159 ## @param server.ingress.tls Enable TLS for the Argo CD server ingress
2160 ## @param server.ingress.extraHosts Extra hosts array for the Argo CD server ingress
2161 ## @param server.ingress.path Path array for the Argo CD server ingress
2162 ## @param server.ingress.extraPaths Extra paths for the Argo CD server ingress
2163 ## @param server.ingress.extraTls Extra TLS configuration for the Argo CD server ingress
2164 ## @param server.ingress.secrets Secrets array to mount into the Ingress
2165 ## @param server.ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)
2168 ## Set to true to enable ingress record generation
2171 ## @param server.ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm
2174 ## Ingress Path type
2176 pathType: ImplementationSpecific
2177 ## Override API Version (automatically detected if not set)
2180 ## When the ingress is enabled, a host pointing to this will be created
2182 hostname: argocd.server.local
2183 ## The Path to Argo CD server. You may need to set this to '/*' in order to use this
2184 ## with ALB ingress controllers.
2187 ## For a full list of possible ingress annotations, please see
2188 ## ref: https://github.com/kubernetes/ingress-nginx/blob/main/docs/user-guide/nginx-configuration/annotations.md
2189 ## Use this parameter to set the required annotations for cert-manager, see
2190 ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
2194 ## kubernetes.io/ingress.class: nginx
2195 ## cert-manager.io/cluster-issuer: cluster-issuer-name
2198 ## Enable TLS configuration for the hostname defined at ingress.hostname parameter
2199 ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }}
2200 ## You can use the ingress.secrets parameter to create this TLS secret or rely on cert-manager to create it
2203 ## The list of additional hostnames to be covered with this ingress record.
2204 ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
2206 ## - name: argocd.server.local
2210 ## Any additional arbitrary paths that may need to be added to the ingress under the main host.
2211 ## For example: The ALB ingress controller requires a special rule for handling SSL redirection.
2215 ## serviceName: ssl-redirect
2216 ## servicePort: use-annotation
2219 ## The tls configuration for additional hostnames to be covered with this ingress record.
2220 ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
2223 ## - argocd.server.local
2224 ## secretName: argocd.server.local-tls
2227 ## If you're providing your own certificates, please use this to add the certificates as secrets
2228 ## key and certificate should start with -----BEGIN CERTIFICATE----- or
2229 ## -----BEGIN RSA PRIVATE KEY-----
2231 ## name should line up with a tlsSecret set further up
2232 ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set
2234 ## It is also possible to create and manage the certificates outside of this helm chart
2235 ## Please see README.md for more information
2238 ## - name: argocd.server.local-tls
2243 ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
2244 ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
2246 ingressClassName: ""
2247 ## @param server.ingress.extraRules Additional rules to be covered with this ingress record
2248 ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules
2251 ## - host: example.local
2256 ## name: example-svc
2261 ## Metrics configuration for Argo CD server
2264 ## Enable metrics for Argo CD server
2265 ## @param server.metrics.enabled Enable metrics for the Argo CD server
2269 ## @param server.metrics.service.type Argo CD server service type
2272 ## @param server.metrics.service.ports.metrics Argo CD server metrics service port
2276 ## Node ports to expose
2277 ## @param server.metrics.service.nodePorts.metrics Node port for Argo CD server metrics service
2278 ## NOTE: choose port between <30000-32767>
2282 ## @param server.metrics.service.clusterIP Argo CD server metrics service Cluster IP
2287 ## @param server.metrics.service.loadBalancerIP Argo CD server service Load Balancer IP
2288 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
2291 ## @param server.metrics.service.loadBalancerSourceRanges Argo CD server service Load Balancer sources
2292 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
2294 ## loadBalancerSourceRanges:
2297 loadBalancerSourceRanges: []
2298 ## @param server.metrics.service.externalTrafficPolicy Argo CD server service external traffic policy
2299 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
2301 externalTrafficPolicy: Cluster
2302 ## @param server.metrics.service.annotations Additional custom annotations for Argo CD server service
2305 ## @param server.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
2306 ## If "ClientIP", consecutive client requests will be directed to the same Pod
2307 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
2309 sessionAffinity: None
2310 ## @param server.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
2311 ## sessionAffinityConfig:
2313 ## timeoutSeconds: 300
2314 sessionAffinityConfig: {}
2315 ## Argo CD server metrics service monitor configuration
2318 ## @param server.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator
2321 ## @param server.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
2323 ## namespace: monitoring
2326 ## @param server.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
2329 ## @param server.metrics.serviceMonitor.interval Interval at which metrics should be scraped
2330 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
2333 ## @param server.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
2334 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
2337 ## @param server.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
2338 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
2341 ## @param server.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
2342 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
2344 metricRelabelings: []
2345 ## @param server.metrics.serviceMonitor.selector ServiceMonitor selector labels
2348 ## prometheus: my-prometheus
2351 ## @param server.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
2354 ## Configure the ingress resource that allows you to access the Argo CD gRPC API
2355 ## Ref: https://kubernetes.io/docs/concepts/services-networking/ingress/
2356 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/
2357 ## @param server.ingressGrpc.enabled Enable the creation of an ingress for the Argo CD gRPC server
2358 ## @param server.ingressGrpc.pathType Path type for the Argo CD gRPC server ingress
2359 ## @param server.ingressGrpc.apiVersion Ingress API version for the Argo CD gRPC server ingress
2360 ## @param server.ingressGrpc.hostname Ingress hostname for the Argo CD gRPC server ingress
2361 ## @param server.ingressGrpc.annotations Annotations for the Argo CD gRPC server ingress. To enable certificate autogeneration, place here your cert-manager annotations
2362 ## @param server.ingressGrpc.tls Enable TLS for the Argo CD server ingress
2363 ## @param server.ingressGrpc.extraHosts Extra hosts array for the Argo CD gRPC server ingress
2364 ## @param server.ingressGrpc.path Path array for the Argo CD gRPC server ingress
2365 ## @param server.ingressGrpc.extraPaths Extra paths for the Argo CD gRPC server ingress
2366 ## @param server.ingressGrpc.extraTls Extra TLS configuration for the Argo CD gRPC server ingress
2367 ## @param server.ingressGrpc.secrets Secrets array to mount into the Ingress
2368 ## @param server.ingressGrpc.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)
2371 ## Set to true to enable ingress record generation
2374 ## @param server.ingressGrpc.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm
2377 ## Ingress Path type
2379 pathType: ImplementationSpecific
2380 ## Override API Version (automatically detected if not set)
2383 ## When the ingress is enabled, a host pointing to this will be created
2385 hostname: argocd.server.local
2386 ## The Path to Argo CD server gRPC API. You may need to set this to '/*' in order to use this
2387 ## with ALB ingress controllers.
2390 ## For a full list of possible ingress annotations, please see
2391 ## ref: https://github.com/kubernetes/ingress-nginx/blob/main/docs/user-guide/nginx-configuration/annotations.md
2392 ## Use this parameter to set the required annotations for cert-manager, see
2393 ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
2397 ## kubernetes.io/ingress.class: nginx
2398 ## cert-manager.io/cluster-issuer: cluster-issuer-name
2401 ## Enable TLS configuration for the hostname defined at ingress.hostname parameter
2402 ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }}
2403 ## You can use the ingress.secrets parameter to create this TLS secret or relay on cert-manager to create it
2406 ## The list of additional hostnames to be covered with this ingress record.
2407 ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
2409 ## - name: argocd.server.local
2413 ## Any additional arbitrary paths that may need to be added to the ingress under the main host.
2414 ## For example: The ALB ingress controller requires a special rule for handling SSL redirection.
2418 ## serviceName: ssl-redirect
2419 ## servicePort: use-annotation
2422 ## The tls configuration for additional hostnames to be covered with this ingress record.
2423 ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
2426 ## - argocd.server.local
2427 ## secretName: argocd.server.local-tls
2430 ## If you're providing your own certificates, please use this to add the certificates as secrets
2431 ## key and certificate should start with -----BEGIN CERTIFICATE----- or
2432 ## -----BEGIN RSA PRIVATE KEY-----
2434 ## name should line up with a tlsSecret set further up
2435 ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set
2437 ## It is also possible to create and manage the certificates outside of this helm chart
2438 ## Please see README.md for more information
2441 ## - name: argocd.server.local-tls
2446 ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
2447 ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
2449 ingressClassName: ""
2450 ## @param server.ingressGrpc.extraRules Additional rules to be covered with this ingress record
2451 ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules
2454 ## - host: example.server.local
2459 ## name: example-svc
2464 ## Argo CD server container port
2465 ## @param server.containerPorts.http Argo CD server HTTP container port
2466 ## @param server.containerPorts.https Argo CD server HTTPS container port
2467 ## @param server.containerPorts.metrics Argo CD server metrics container port
2472 ## Argo CD server service parameters
2475 ## @param server.service.type Argo CD service type
2478 ## @param server.service.ports.http HTTP port for the gRPC ingress when enabled
2479 ## @param server.service.ports.https HTTPS port for the gRPC ingress when enabled
2484 ## Node ports to expose
2485 ## @param server.service.nodePorts.http Node port for HTTP
2486 ## @param server.service.nodePorts.https Node port for HTTPS
2487 ## NOTE: choose port between <30000-32767>
2492 ## @param server.service.clusterIP Argo CD service Cluster IP
2497 ## @param server.service.loadBalancerIP Argo CD service Load Balancer IP
2498 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
2501 ## @param server.service.loadBalancerSourceRanges Argo CD service Load Balancer sources
2502 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
2504 ## loadBalancerSourceRanges:
2507 loadBalancerSourceRanges: []
2508 ## @param server.service.externalTrafficPolicy Argo CD service external traffic policy
2509 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
2511 externalTrafficPolicy: Cluster
2512 ## @param server.service.annotations Additional custom annotations for Argo CD service
2515 ## @param server.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
2518 ## @param server.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
2519 ## If "ClientIP", consecutive client requests will be directed to the same Pod
2520 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
2522 sessionAffinity: None
2523 ## @param server.service.sessionAffinityConfig Additional settings for the sessionAffinity
2524 ## sessionAffinityConfig:
2526 ## timeoutSeconds: 300
2527 sessionAffinityConfig: {}
2529 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
2532 ## @param server.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
2535 ## @param server.networkPolicy.allowExternal Don't require server label for connections
2536 ## The Policy model to apply. When set to false, only pods with the correct
2537 ## server label will have network access to the ports server is listening
2538 ## on. When true, server will accept connections from any source
2539 ## (with the correct destination port).
2542 ## @param server.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
2544 allowExternalEgress: true
2545 ## @param server.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
2547 kubeAPIServerPorts: [443, 6443, 8443]
2548 ## @param server.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
2558 ## - matchExpressions:
2564 ## @param server.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true)
2574 ## - matchExpressions:
2581 ## @param server.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
2582 ## @param server.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
2584 ingressNSMatchLabels: {}
2585 ingressNSPodMatchLabels: {}
2586 ## @param server.command Override default container command (useful when using custom images)
2589 ## @param server.args Override default container args (useful when using custom images)
2592 ## @param server.extraArgs concat to the default args
2595 ## @param server.automountServiceAccountToken Mount Service Account token in pod
2597 automountServiceAccountToken: true
2598 ## @param server.hostAliases Argo CD server pods host aliases
2599 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
2602 ## @param server.podLabels Extra labels for Argo CD server pods
2603 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
2606 ## @param server.podAnnotations Annotations for Argo CD server pods
2607 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
2610 ## @param server.podAffinityPreset Pod affinity preset. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard`
2611 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
2613 podAffinityPreset: ""
2614 ## @param server.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard`
2615 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
2617 podAntiAffinityPreset: soft
2618 ## Node server.affinity preset
2619 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
2622 ## @param server.nodeAffinityPreset.type Node affinity preset type. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard`
2625 ## @param server.nodeAffinityPreset.key Node label key to match. Ignored if `server.affinity` is set
2628 ## @param server.nodeAffinityPreset.values Node label values to match. Ignored if `server.affinity` is set
2635 ## @param server.affinity Affinity for Argo CD server pods assignment
2636 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
2637 ## NOTE: `server.podAffinityPreset`, `server.podAntiAffinityPreset`, and `server.nodeAffinityPreset` will be ignored when it's set
2640 ## @param server.nodeSelector Node labels for Argo CD server pods assignment
2641 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
2644 ## @param server.tolerations Tolerations for Argo CD server pods assignment
2645 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
2648 ## @param server.schedulerName Name of the k8s scheduler (other than default)
2649 ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
2652 ## @param server.shareProcessNamespace Enable shared process namespace in a pod.
2653 ## If set to false (default), each container will run in separate namespace, server will have PID=1.
2654 ## If set to true, the /pause will run as init process and will reap any zombie PIDs,
2655 ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds.
2656 ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating.
2657 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
2659 shareProcessNamespace: false
2660 ## @param server.topologySpreadConstraints Topology Spread Constraints for pod assignment
2661 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
2662 ## The value is evaluated as a template
2664 topologySpreadConstraints: []
2665 ## @param server.updateStrategy.type Argo CD server statefulset strategy type
2666 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
2670 ## Can be set to RollingUpdate or OnDelete
2673 ## @param server.priorityClassName Argo CD server pods' priorityClassName
2675 priorityClassName: ""
2676 ## @param server.runtimeClassName Name of the runtime class to be used by pod(s)
2677 ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/
2679 runtimeClassName: ""
2680 ## @param server.lifecycleHooks for the Argo CD server container(s) to automate configuration before or after startup
2683 ## @param server.extraEnvVars Array with extra environment variables to add to Argo CD server nodes
2690 ## @param server.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD server nodes
2693 ## @param server.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD server nodes
2695 extraEnvVarsSecret: ""
2696 ## @param server.extraVolumes Optionally specify extra list of additional volumes for the Argo CD server pod(s)
2699 ## @param server.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD server container(s)
2701 extraVolumeMounts: []
2702 ## @param server.sidecars Add additional sidecar containers to the Argo CD server pod(s)
2705 ## - name: your-image-name
2706 ## image: your-image
2707 ## imagePullPolicy: Always
2710 ## containerPort: 1234
2713 ## @param server.initContainers Add additional init containers to the Argo CD server pod(s)
2714 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
2717 ## - name: your-image-name
2718 ## image: your-image
2719 ## imagePullPolicy: Always
2720 ## command: ['sh', '-c', 'echo "hello world"']
2723 ## ServiceAccount configuration for the Argo CD server
2726 ## @param server.serviceAccount.create Specifies whether a ServiceAccount should be created
2729 ## @param server.serviceAccount.name The name of the ServiceAccount to use.
2730 ## If not set and create is true, a name is generated using the common.names.fullname template
2733 ## @param server.serviceAccount.automountServiceAccountToken Automount service account token for the server service account
2735 automountServiceAccountToken: false
2736 ## @param server.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
2739 ## Enable admin clusterrole resources. Allows Argo CD server to have access to multiple namespaces
2740 ## @param server.clusterAdminAccess Enable K8s cluster admin access for the server
2742 clusterAdminAccess: true
2743 ## Enable Custom Rules for Argo CD server cluster role
2744 ## @param server.clusterRoleRules Use custom rules for server's cluster role
2746 clusterRoleRules: []
2747 ## Pod Disruption Budget configuration
2748 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb
2749 ## @param server.pdb.create Enable/disable a Pod Disruption Budget creation
2750 ## @param server.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
2751 ## @param server.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `server.pdb.minAvailable` and `server.pdb.maxUnavailable` are empty.
2757## @section Argo CD repo server Parameters
2759## Argo CD repository server configuration
2762 ## @param repoServer.replicaCount Number of Argo CD repo server replicas to deploy
2765 ## Configure extra options for Argo CD repo server containers' liveness and readiness probes
2766 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
2767 ## @param repoServer.startupProbe.enabled Enable startupProbe on Argo CD repo server nodes
2768 ## @param repoServer.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
2769 ## @param repoServer.startupProbe.periodSeconds Period seconds for startupProbe
2770 ## @param repoServer.startupProbe.timeoutSeconds Timeout seconds for startupProbe
2771 ## @param repoServer.startupProbe.failureThreshold Failure threshold for startupProbe
2772 ## @param repoServer.startupProbe.successThreshold Success threshold for startupProbe
2776 initialDelaySeconds: 10
2781 ## @param repoServer.livenessProbe.enabled Enable livenessProbe on Argo CD repo server nodes
2782 ## @param repoServer.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
2783 ## @param repoServer.livenessProbe.periodSeconds Period seconds for livenessProbe
2784 ## @param repoServer.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
2785 ## @param repoServer.livenessProbe.failureThreshold Failure threshold for livenessProbe
2786 ## @param repoServer.livenessProbe.successThreshold Success threshold for livenessProbe
2790 initialDelaySeconds: 10
2795 ## @param repoServer.readinessProbe.enabled Enable readinessProbe on Argo CD repo server nodes
2796 ## @param repoServer.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
2797 ## @param repoServer.readinessProbe.periodSeconds Period seconds for readinessProbe
2798 ## @param repoServer.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
2799 ## @param repoServer.readinessProbe.failureThreshold Failure threshold for readinessProbe
2800 ## @param repoServer.readinessProbe.successThreshold Success threshold for readinessProbe
2804 initialDelaySeconds: 10
2809 ## @param repoServer.customStartupProbe Custom startupProbe that overrides the default one
2811 customStartupProbe: {}
2812 ## @param repoServer.customLivenessProbe Custom livenessProbe that overrides the default one
2814 customLivenessProbe: {}
2815 ## @param repoServer.customReadinessProbe Custom readinessProbe that overrides the default one
2817 customReadinessProbe: {}
2818 ## Argo CD repo server resource requests and limits
2819 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
2820 ## @param repoServer.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if repoServer.resources is set (repoServer.resources is recommended for production).
2822 resourcesPreset: "nano"
2823 ## @param repoServer.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
2834 ## Configure Pods Security Context
2835 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
2836 ## @param repoServer.podSecurityContext.enabled Enabled Argo CD repo server pods' Security Context
2837 ## @param repoServer.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
2838 ## @param repoServer.podSecurityContext.sysctls Set kernel settings using the sysctl interface
2839 ## @param repoServer.podSecurityContext.supplementalGroups Set filesystem extra groups
2840 ## @param repoServer.podSecurityContext.fsGroup Set Argo CD repo server pod's Security Context fsGroup
2844 fsGroupChangePolicy: Always
2846 supplementalGroups: []
2848 ## Configure Container Security Context
2849 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
2850 ## @param repoServer.containerSecurityContext.enabled Enabled Argo CD repo server containers' Security Context
2851 ## @param repoServer.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
2852 ## @param repoServer.containerSecurityContext.runAsUser Set Argo CD repo server containers' Security Context runAsUser
2853 ## @param repoServer.containerSecurityContext.runAsGroup Set Argo CD repo server containers' Security Context runAsGroup
2854 ## @param repoServer.containerSecurityContext.allowPrivilegeEscalation Set Argo CD repo server containers' Security Context allowPrivilegeEscalation
2855 ## @param repoServer.containerSecurityContext.capabilities.drop Set Argo CD containers' repo server Security Context capabilities to be dropped
2856 ## @param repoServer.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' repo server Security Context readOnlyRootFilesystem
2857 ## @param repoServer.containerSecurityContext.runAsNonRoot Set Argo CD repo server containers' Security Context runAsNonRoot
2858 ## @param repoServer.containerSecurityContext.privileged Set repoServer container's Security Context privileged
2859 ## @param repoServer.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
2861 containerSecurityContext:
2867 readOnlyRootFilesystem: true
2868 allowPrivilegeEscalation: false
2873 type: "RuntimeDefault"
2874 ## Repo server service parameters
2877 ## @param repoServer.service.type Repo server service type
2880 ## @param repoServer.service.ports.repoServer Repo server service port
2884 ## Node ports to expose
2885 ## @param repoServer.service.nodePorts.repoServer Node port for the repo server service
2886 ## NOTE: choose port between <30000-32767>
2890 ## @param repoServer.service.clusterIP Repo server service Cluster IP
2895 ## @param repoServer.service.loadBalancerIP Repo server service Load Balancer IP
2896 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
2899 ## @param repoServer.service.loadBalancerSourceRanges Repo server service Load Balancer sources
2900 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
2902 ## loadBalancerSourceRanges:
2905 loadBalancerSourceRanges: []
2906 ## @param repoServer.service.externalTrafficPolicy Repo server service external traffic policy
2907 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
2909 externalTrafficPolicy: Cluster
2910 ## @param repoServer.service.annotations Additional custom annotations for Repo server service
2913 ## @param repoServer.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
2916 ## @param repoServer.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
2917 ## If "ClientIP", consecutive client requests will be directed to the same Pod
2918 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
2920 sessionAffinity: None
2921 ## @param repoServer.service.sessionAffinityConfig Additional settings for the sessionAffinity
2922 ## sessionAffinityConfig:
2924 ## timeoutSeconds: 300
2925 sessionAffinityConfig: {}
2927 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
2930 ## @param repoServer.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
2933 ## @param repoServer.networkPolicy.allowExternal Don't require server label for connections
2934 ## The Policy model to apply. When set to false, only pods with the correct
2935 ## server label will have network access to the ports server is listening
2936 ## on. When true, server will accept connections from any source
2937 ## (with the correct destination port).
2940 ## @param repoServer.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
2942 allowExternalEgress: true
2943 ## @param repoServer.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
2945 kubeAPIServerPorts: [443, 6443, 8443]
2946 ## @param repoServer.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
2956 ## - matchExpressions:
2962 ## @param repoServer.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true)
2972 ## - matchExpressions:
2979 ## @param repoServer.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
2980 ## @param repoServer.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
2982 ingressNSMatchLabels: {}
2983 ingressNSPodMatchLabels: {}
2984 ## Argo CD repo server log format: text|json
2985 ## @param repoServer.logFormat Format for the Argo CD repo server logs. Options: [text, json]
2988 ## Argo CD application controller log level
2989 ## @param repoServer.logLevel Log level for the Argo CD repo server
2992 ## Argo CD repo server container port
2993 ## @param repoServer.containerPorts.repoServer Container port for Argo CD repo server
2994 ## @param repoServer.containerPorts.metrics Metrics port for Argo CD repo server
2999 ## Metrics configuration for Argo CD repo server
3002 ## Enable metrics for Argo CD repo server
3003 ## @param repoServer.metrics.enabled Enable metrics for the Argo CD repo server
3007 ## @param repoServer.metrics.service.type Argo CD repo server service type
3010 ## @param repoServer.metrics.service.ports.metrics Argo CD repo server metrics service port
3014 ## Node ports to expose
3015 ## @param repoServer.metrics.service.nodePorts.metrics Node port for the repo server metrics service
3016 ## NOTE: choose port between <30000-32767>
3020 ## @param repoServer.metrics.service.clusterIP Argo CD repo server metrics service Cluster IP
3025 ## @param repoServer.metrics.service.loadBalancerIP Argo CD repo server service Load Balancer IP
3026 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
3029 ## @param repoServer.metrics.service.loadBalancerSourceRanges Argo CD repo server service Load Balancer sources
3030 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
3032 ## loadBalancerSourceRanges:
3035 loadBalancerSourceRanges: []
3036 ## @param repoServer.metrics.service.externalTrafficPolicy Argo CD repo server service external traffic policy
3037 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
3039 externalTrafficPolicy: Cluster
3040 ## @param repoServer.metrics.service.annotations Additional custom annotations for Argo CD repo server service
3043 ## @param repoServer.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
3044 ## If "ClientIP", consecutive client requests will be directed to the same Pod
3045 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
3047 sessionAffinity: None
3048 ## @param repoServer.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
3049 ## sessionAffinityConfig:
3051 ## timeoutSeconds: 300
3052 sessionAffinityConfig: {}
3053 ## Argo CD repo server metrics service monitor configuration
3056 ## @param repoServer.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator
3059 ## @param repoServer.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
3061 ## namespace: monitoring
3064 ## @param repoServer.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
3067 ## @param repoServer.metrics.serviceMonitor.interval Interval at which metrics should be scraped
3068 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
3071 ## @param repoServer.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
3072 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
3075 ## @param repoServer.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
3076 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
3079 ## @param repoServer.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
3080 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
3082 metricRelabelings: []
3083 ## @param repoServer.metrics.serviceMonitor.selector ServiceMonitor selector labels
3086 ## prometheus: my-prometheus
3089 ## @param repoServer.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
3092 ## Argo CD repo server deployment autoscaling
3093 ## @param repoServer.autoscaling.enabled Enable Argo CD repo server deployment autoscaling
3094 ## @param repoServer.autoscaling.minReplicas Argo CD repo server deployment autoscaling minimum number of replicas
3095 ## @param repoServer.autoscaling.maxReplicas Argo CD repo server deployment autoscaling maximum number of replicas
3096 ## @param repoServer.autoscaling.targetCPU Argo CD repo server deployment autoscaling target CPU percentage
3097 ## @param repoServer.autoscaling.targetMemory Argo CD repo server deployment autoscaling target CPU memory
3105 ## ServiceAccount configuration for the Argo CD repo server
3108 ## @param repoServer.serviceAccount.create Specifies whether a ServiceAccount for repo server should be created
3111 ## @param repoServer.serviceAccount.name The name of the ServiceAccount for repo server to use.
3112 ## If not set and create is true, a name is generated using the common.names.fullname template
3115 ## @param repoServer.serviceAccount.automountServiceAccountToken Automount service account token for the repo server service account
3117 automountServiceAccountToken: false
3118 ## @param repoServer.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
3121 ## Enable admin clusterrole resources. Allows Argo CD repo server to have access to multiple namespaces
3122 ## @param repoServer.clusterAdminAccess Enable K8s cluster admin access for the repo server
3124 clusterAdminAccess: false
3125 ## Enable Custom Rules for Argo CD server cluster role
3126 ## @param repoServer.clusterRoleRules Use custom rules for repo server's cluster role
3128 clusterRoleRules: []
3129 ## @param repoServer.command Override default container command (useful when using custom images)
3132 ## @param repoServer.args Override default container args (useful when using custom images)
3135 ## @param repoServer.extraArgs Add extra args to the default repo server args
3138 ## @param repoServer.automountServiceAccountToken Mount Service Account token in pod
3140 automountServiceAccountToken: true
3141 ## @param repoServer.hostAliases Argo CD repo server pods host aliases
3142 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
3145 ## @param repoServer.podLabels Extra labels for Argo CD repo server pods
3146 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
3149 ## @param repoServer.podAnnotations Annotations for Argo CD repo server pods
3150 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
3153 ## @param repoServer.podAffinityPreset Pod affinity preset. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard`
3154 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
3156 podAffinityPreset: ""
3157 ## @param repoServer.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard`
3158 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
3160 podAntiAffinityPreset: soft
3161 ## Node repoServer.affinity preset
3162 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
3165 ## @param repoServer.nodeAffinityPreset.type Node affinity preset type. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard`
3168 ## @param repoServer.nodeAffinityPreset.key Node label key to match. Ignored if `repoServer.affinity` is set
3171 ## @param repoServer.nodeAffinityPreset.values Node label values to match. Ignored if `repoServer.affinity` is set
3178 ## @param repoServer.affinity Affinity for Argo CD repo server pods assignment
3179 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
3180 ## NOTE: `repoServer.podAffinityPreset`, `repoServer.podAntiAffinityPreset`, and `repoServer.nodeAffinityPreset` will be ignored when it's set
3183 ## @param repoServer.nodeSelector Node labels for Argo CD repo server pods assignment
3184 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
3187 ## @param repoServer.tolerations Tolerations for Argo CD repo server pods assignment
3188 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
3191 ## @param repoServer.schedulerName Name of the k8s scheduler (other than default)
3192 ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
3195 ## @param repoServer.shareProcessNamespace Enable shared process namespace in a pod.
3196 ## If set to false (default), each container will run in separate namespace, repoServer will have PID=1.
3197 ## If set to true, the /pause will run as init process and will reap any zombie PIDs,
3198 ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds.
3199 ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating.
3200 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
3202 shareProcessNamespace: false
3203 ## @param repoServer.topologySpreadConstraints Topology Spread Constraints for pod assignment
3204 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
3205 ## The value is evaluated as a template
3207 topologySpreadConstraints: []
3208 ## @param repoServer.updateStrategy.type Argo CD repo server statefulset strategy type
3209 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
3213 ## Can be set to RollingUpdate or OnDelete
3216 ## @param repoServer.priorityClassName Argo CD repo server pods' priorityClassName
3218 priorityClassName: ""
3219 ## @param repoServer.runtimeClassName Name of the runtime class to be used by pod(s)
3220 ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/
3222 runtimeClassName: ""
3223 ## @param repoServer.lifecycleHooks for the Argo CD repo server container(s) to automate configuration before or after startup
3226 ## @param repoServer.extraEnvVars Array with extra environment variables to add to Argo CD repo server nodes
3233 ## @param repoServer.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD repo server nodes
3236 ## @param repoServer.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD repo server nodes
3238 extraEnvVarsSecret: ""
3239 ## @param repoServer.extraVolumes Optionally specify extra list of additional volumes for the Argo CD repo server pod(s)
3242 ## @param repoServer.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD repo server container(s)
3244 extraVolumeMounts: []
3245 ## @param repoServer.sidecars Add additional sidecar containers to the Argo CD repo server pod(s)
3248 ## - name: your-image-name
3249 ## image: your-image
3250 ## imagePullPolicy: Always
3253 ## containerPort: 1234
3256 ## @param repoServer.initContainers Add additional init containers to the Argo CD repo server pod(s)
3257 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
3260 ## - name: your-image-name
3261 ## image: your-image
3262 ## imagePullPolicy: Always
3263 ## command: ['sh', '-c', 'echo "hello world"']
3266 ## Pod Disruption Budget configuration
3267 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb
3268 ## @param repoServer.pdb.create Enable/disable a Pod Disruption Budget creation
3269 ## @param repoServer.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
3270 ## @param repoServer.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `repoServer.pdb.minAvailable` and `repoServer.pdb.maxUnavailable` are empty.
3276## @section Dex Parameters
3281 ## Iamguarded Dex image
3282 ## @param dex.image.registry [default: REGISTRY_NAME] Dex image registry
3283 ## @param dex.image.repository [default: REPOSITORY_NAME/dex] Dex image repository
3284 ## @skip dex.image.tag Dex image tag (immutable tags are recommended)
3285 ## @param dex.image.digest Dex image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
3286 ## @param dex.image.pullPolicy Dex image pull policy
3287 ## @param dex.image.pullSecrets Dex image pull secrets
3288 ## @param dex.image.debug Enable Dex image debug mode
3291 registry: chainreg.biz
3292 repository: chainguard-private/dex-iamguarded
3295 ## Specify a imagePullPolicy
3296 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
3298 pullPolicy: IfNotPresent
3299 ## Optionally specify an array of imagePullSecrets.
3300 ## Secrets must be manually created in the namespace.
3301 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
3304 ## - myRegistryKeySecretName
3307 ## Enable debug mode
3310 ## Enable Dex deployment
3311 ## @param dex.enabled Enable the creation of a Dex deployment for SSO
3314 ## @param dex.replicaCount Number of Dex replicas to deploy
3317 ## Configure extra options for Dex containers' liveness and readiness probes
3318 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
3319 ## @param dex.startupProbe.enabled Enable startupProbe on Dex nodes
3320 ## @param dex.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
3321 ## @param dex.startupProbe.periodSeconds Period seconds for startupProbe
3322 ## @param dex.startupProbe.timeoutSeconds Timeout seconds for startupProbe
3323 ## @param dex.startupProbe.failureThreshold Failure threshold for startupProbe
3324 ## @param dex.startupProbe.successThreshold Success threshold for startupProbe
3328 initialDelaySeconds: 10
3333 ## @param dex.livenessProbe.enabled Enable livenessProbe on Dex nodes
3334 ## @param dex.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
3335 ## @param dex.livenessProbe.periodSeconds Period seconds for livenessProbe
3336 ## @param dex.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
3337 ## @param dex.livenessProbe.failureThreshold Failure threshold for livenessProbe
3338 ## @param dex.livenessProbe.successThreshold Success threshold for livenessProbe
3342 initialDelaySeconds: 10
3347 ## @param dex.readinessProbe.enabled Enable readinessProbe on Dex nodes
3348 ## @param dex.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
3349 ## @param dex.readinessProbe.periodSeconds Period seconds for readinessProbe
3350 ## @param dex.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
3351 ## @param dex.readinessProbe.failureThreshold Failure threshold for readinessProbe
3352 ## @param dex.readinessProbe.successThreshold Success threshold for readinessProbe
3356 initialDelaySeconds: 10
3361 ## @param dex.customStartupProbe Custom startupProbe that overrides the default one
3363 customStartupProbe: {}
3364 ## @param dex.customLivenessProbe Custom livenessProbe that overrides the default one
3366 customLivenessProbe: {}
3367 ## @param dex.customReadinessProbe Custom readinessProbe that overrides the default one
3369 customReadinessProbe: {}
3370 ## Dex resource requests and limits
3371 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
3372 ## @param dex.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if dex.resources is set (dex.resources is recommended for production).
3374 resourcesPreset: "nano"
3375 ## @param dex.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
3386 ## Configure Pods Security Context
3387 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
3388 ## @param dex.podSecurityContext.enabled Enabled Dex pods' Security Context
3389 ## @param dex.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
3390 ## @param dex.podSecurityContext.sysctls Set kernel settings using the sysctl interface
3391 ## @param dex.podSecurityContext.supplementalGroups Set filesystem extra groups
3392 ## @param dex.podSecurityContext.fsGroup Set Dex pod's Security Context fsGroup
3396 fsGroupChangePolicy: Always
3398 supplementalGroups: []
3400 ## Configure Container Security Context
3401 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
3402 ## @param dex.containerSecurityContext.enabled Enabled Dex containers' Security Context
3403 ## @param dex.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
3404 ## @param dex.containerSecurityContext.runAsUser Set Dex containers' Security Context runAsUser
3405 ## @param dex.containerSecurityContext.runAsGroup Set Dex containers' Security Context runAsGroup
3406 ## @param dex.containerSecurityContext.allowPrivilegeEscalation Set Dex containers' Security Context allowPrivilegeEscalation
3407 ## @param dex.containerSecurityContext.readOnlyRootFilesystem Set Dex containers' server Security Context readOnlyRootFilesystem
3408 ## @param dex.containerSecurityContext.runAsNonRoot Set Dex containers' Security Context runAsNonRoot
3409 ## @param dex.containerSecurityContext.capabilities.drop Set Argo CD containers' repo server Security Context capabilities to be dropped
3410 ## @param dex.containerSecurityContext.privileged Set dex container's Security Context privileged
3411 ## @param dex.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
3413 containerSecurityContext:
3419 readOnlyRootFilesystem: true
3420 allowPrivilegeEscalation: false
3425 type: "RuntimeDefault"
3426 ## Dex service parameters
3429 ## @param dex.service.type Dex service type
3432 ## @param dex.service.ports.http Dex HTTP service port
3433 ## @param dex.service.ports.grpc Dex grpc service port
3438 ## Node ports to expose
3439 ## @param dex.service.nodePorts.http HTTP node port for the Dex service
3440 ## @param dex.service.nodePorts.grpc gRPC node port for the Dex service
3441 ## NOTE: choose port between <30000-32767>
3446 ## @param dex.service.clusterIP Dex service Cluster IP
3451 ## @param dex.service.loadBalancerIP Dex service Load Balancer IP
3452 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
3455 ## @param dex.service.loadBalancerSourceRanges Dex service Load Balancer sources
3456 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
3458 ## loadBalancerSourceRanges:
3461 loadBalancerSourceRanges: []
3462 ## @param dex.service.externalTrafficPolicy Dex service external traffic policy
3463 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
3465 externalTrafficPolicy: Cluster
3466 ## @param dex.service.annotations Additional custom annotations for Dex service
3469 ## @param dex.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
3472 ## @param dex.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
3473 ## If "ClientIP", consecutive client requests will be directed to the same Pod
3474 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
3476 sessionAffinity: None
3477 ## @param dex.service.sessionAffinityConfig Additional settings for the sessionAffinity
3478 ## sessionAffinityConfig:
3480 ## timeoutSeconds: 300
3481 sessionAffinityConfig: {}
3483 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
3486 ## @param dex.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
3489 ## @param dex.networkPolicy.allowExternal Don't require server label for connections
3490 ## The Policy model to apply. When set to false, only pods with the correct
3491 ## server label will have network access to the ports server is listening
3492 ## on. When true, server will accept connections from any source
3493 ## (with the correct destination port).
3496 ## @param dex.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
3498 allowExternalEgress: true
3499 ## @param dex.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
3501 kubeAPIServerPorts: [443, 6443, 8443]
3502 ## @param dex.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
3512 ## - matchExpressions:
3518 ## @param dex.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true)
3528 ## - matchExpressions:
3535 ## @param dex.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
3536 ## @param dex.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
3538 ingressNSMatchLabels: {}
3539 ingressNSPodMatchLabels: {}
3540 ## Dex container ports
3541 ## @param dex.containerPorts.http Dex container HTTP port
3542 ## @param dex.containerPorts.grpc Dex gRPC port
3543 ## @param dex.containerPorts.metrics Dex metrics port
3549 ## Metrics configuration for Dex
3552 ## Enable metrics for Argo Dex
3553 ## @param dex.metrics.enabled Enable metrics service for Dex
3557 ## @param dex.metrics.service.type Dex service type
3560 ## @param dex.metrics.service.ports.metrics Dex metrics service port
3564 ## Node ports to expose
3565 ## @param dex.metrics.service.nodePorts.metrics Node port for the Dex service
3566 ## NOTE: choose port between <30000-32767>
3570 ## @param dex.metrics.service.clusterIP Dex service metrics service Cluster IP
3575 ## @param dex.metrics.service.loadBalancerIP Dex service Load Balancer IP
3576 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
3579 ## @param dex.metrics.service.loadBalancerSourceRanges Dex service Load Balancer sources
3580 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
3582 ## loadBalancerSourceRanges:
3585 loadBalancerSourceRanges: []
3586 ## @param dex.metrics.service.externalTrafficPolicy Dex service external traffic policy
3587 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
3589 externalTrafficPolicy: Cluster
3590 ## @param dex.metrics.service.annotations Additional custom annotations for Dex service
3593 ## @param dex.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
3594 ## If "ClientIP", consecutive client requests will be directed to the same Pod
3595 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
3597 sessionAffinity: None
3598 ## @param dex.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
3599 ## sessionAffinityConfig:
3601 ## timeoutSeconds: 300
3602 sessionAffinityConfig: {}
3603 ## Dex metrics service monitor configuration
3606 ## @param dex.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator
3609 ## @param dex.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
3611 ## namespace: monitoring
3614 ## @param dex.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
3617 ## @param dex.metrics.serviceMonitor.interval Interval at which metrics should be scraped
3618 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
3621 ## @param dex.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
3622 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
3625 ## @param dex.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
3626 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
3629 ## @param dex.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
3630 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
3632 metricRelabelings: []
3633 ## @param dex.metrics.serviceMonitor.selector ServiceMonitor selector labels
3636 ## prometheus: my-prometheus
3639 ## @param dex.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
3642 ## ServiceAccount configuration for the Dex
3645 ## @param dex.serviceAccount.create Specifies whether a ServiceAccount should be created for Dex
3648 ## @param dex.serviceAccount.name The name of the ServiceAccount to use.
3649 ## If not set and create is true, a name is generated using the common.names.fullname template
3652 ## @param dex.serviceAccount.automountServiceAccountToken Automount service account token for the Dex service account
3654 automountServiceAccountToken: false
3655 ## @param dex.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
3658 ## @param dex.command Override default container command (useful when using custom images)
3661 ## @param dex.args Override default container args (useful when using custom images)
3664 ## @param dex.extraArgs Add extra args to the default args for Dex
3667 ## @param dex.automountServiceAccountToken Mount Service Account token in pod
3669 automountServiceAccountToken: true
3670 ## @param dex.hostAliases Dex pods host aliases
3671 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
3674 ## @param dex.podLabels Extra labels for Dex pods
3675 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
3678 ## @param dex.podAnnotations Annotations for Dex pods
3679 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
3682 ## @param dex.podAffinityPreset Pod affinity preset. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard`
3683 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
3685 podAffinityPreset: ""
3686 ## @param dex.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard`
3687 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
3689 podAntiAffinityPreset: soft
3690 ## Node dex.affinity preset
3691 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
3694 ## @param dex.nodeAffinityPreset.type Node affinity preset type. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard`
3697 ## @param dex.nodeAffinityPreset.key Node label key to match. Ignored if `dex.affinity` is set
3700 ## @param dex.nodeAffinityPreset.values Node label values to match. Ignored if `dex.affinity` is set
3707 ## @param dex.affinity Affinity for Dex pods assignment
3708 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
3709 ## NOTE: `dex.podAffinityPreset`, `dex.podAntiAffinityPreset`, and `dex.nodeAffinityPreset` will be ignored when it's set
3712 ## @param dex.nodeSelector Node labels for Dex pods assignment
3713 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
3716 ## @param dex.tolerations Tolerations for Dex pods assignment
3717 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
3720 ## @param dex.schedulerName Name of the k8s scheduler (other than default)
3721 ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
3724 ## @param dex.shareProcessNamespace Enable shared process namespace in a pod.
3725 ## If set to false (default), each container will run in separate namespace, dex will have PID=1.
3726 ## If set to true, the /pause will run as init process and will reap any zombie PIDs,
3727 ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds.
3728 ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating.
3729 ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
3731 shareProcessNamespace: false
3732 ## @param dex.topologySpreadConstraints Topology Spread Constraints for pod assignment
3733 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
3734 ## The value is evaluated as a template
3736 topologySpreadConstraints: []
3737 ## @param dex.updateStrategy.type Dex statefulset strategy type
3738 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
3742 ## Can be set to RollingUpdate or OnDelete
3745 ## @param dex.priorityClassName Dex pods' priorityClassName
3747 priorityClassName: ""
3748 ## @param dex.runtimeClassName Name of the runtime class to be used by pod(s)
3749 ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/
3751 runtimeClassName: ""
3752 ## @param dex.lifecycleHooks for the Dex container(s) to automate configuration before or after startup
3755 ## @param dex.extraEnvVars Array with extra environment variables to add to Dex nodes
3762 ## @param dex.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Dex nodes
3765 ## @param dex.extraEnvVarsSecret Name of existing Secret containing extra env vars for Dex nodes
3767 extraEnvVarsSecret: ""
3768 ## @param dex.extraVolumes Optionally specify extra list of additional volumes for the Dex pod(s)
3771 ## @param dex.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Dex container(s)
3773 extraVolumeMounts: []
3774 ## @param dex.sidecars Add additional sidecar containers to the Dex pod(s)
3777 ## - name: your-image-name
3778 ## image: your-image
3779 ## imagePullPolicy: Always
3782 ## containerPort: 1234
3785 ## @param dex.initContainers Add additional init containers to the Dex pod(s)
3786 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
3789 ## - name: your-image-name
3790 ## image: your-image
3791 ## imagePullPolicy: Always
3792 ## command: ['sh', '-c', 'echo "hello world"']
3795 ## Pod Disruption Budget configuration
3796 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb
3797 ## @param dex.pdb.create Enable/disable a Pod Disruption Budget creation
3798 ## @param dex.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
3799 ## @param dex.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `dex.pdb.minAvailable` and `dex.pdb.maxUnavailable` are empty.
3805## @section Shared config for Argo CD components
3807 ## @param config.knownHosts [string] Known hosts to be added to the known hosts list by default. Check the values to see the default value
3810 bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw==
3811 github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==
3812 gitlab.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFSMqzJeV9rUzU4kWitGjeR4PWSa29SPqJ1fVkhtj3Hw9xjLVXVYrU9QlYWrOLXBpQ6KWjbjTDTdDkoohFzgbEY=
3813 gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf
3814 gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9
3815 ssh.dev.azure.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H
3816 vs-ssh.visualstudio.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H
3817 ## @param config.extraKnownHosts Add extra known hosts to the known hosts list
3819 ## extraKnownHosts: |
3820 ## gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf
3821 ## gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9
3824 ## @param config.createExtraKnownHosts Whether to create or not the extra known hosts configmap
3826 createExtraKnownHosts: true
3827 ## @param config.styles Custom CSS styles
3828 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/custom-styles/
3832 ## background: linear-gradient(to bottom, #999, #777, #333, #222, #111);
3836 ## @param config.existingStylesConfigmap Use an existing styles configmap
3838 existingStylesConfigmap: ""
3839 ## @param config.tlsCerts TLS certificates used to verify the authenticity of the repository servers
3840 ## Certificates will be generated by default if the values are not set.
3843 ## argocd-1.example.com: |
3844 ## -----BEGIN CERTIFICATE-----
3846 ## -----END CERTIFICATE-----
3847 ## argocd-2.example.com: |
3848 ## -----BEGIN CERTIFICATE-----
3850 ## -----END CERTIFICATE-----
3853 ## @param config.gpgKeys GnuPG public keys to add to the keyring
3854 ## Keys will be generated by default if the values are not set.
3855 ## Note: Public keys should be exported with `gpg --export --armor <KEY>`
3858 # 4AEE18F83AFDEB23: |
3859 # -----BEGIN PGP PUBLIC KEY BLOCK-----
3861 # -----END PGP PUBLIC KEY BLOCK-----
3863 ## @param config.rbac Role-based authentication configuration
3866 # policy.default: role:readonly
3868 # # Grant all members of the group 'my-org:team-alpha; the ability to sync apps in 'my-project'
3869 # p, my-org:team-alpha, applications, sync, my-project/*, allow
3870 # # Grant all members of 'my-org:team-beta' admins
3871 # g, my-org:team-beta, role:admin
3873 ## Argo CD general secret configuration
3876 ## @param config.secret.create Whether to create or not the secret
3879 ## Annotations to be added to argocd-secret
3880 ## @param config.secret.annotations General secret extra annotations
3884 ## @param config.secret.githubSecret GitHub secret to configure webhooks
3885 ## @param config.secret.gitlabSecret GitLab secret to configure webhooks
3886 ## @param config.secret.bitbucketServerSecret BitBucket secret to configure webhooks
3887 ## @param config.secret.bitbucketUUID BitBucket UUID to configure webhooks
3888 ## @param config.secret.gogsSecret Gogs secret to configure webhooks
3892 bitbucketServerSecret: ""
3895 ## Extra keys to add to the general config secret. Useful for injecting SSO secrets into environment variables.
3896 ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#sso
3897 ## @param config.secret.extra Extra keys to add to the configuration secret.
3898 ## All values must be non-empty.
3900 ## LDAP_PASSWORD: "mypassword"
3903 ## Argo CD TLS Data.
3904 ## @param config.secret.argocdServerTlsConfig.key TLS key for the Argo CD config secret
3905 ## @param config.secret.argocdServerTlsConfig.crt TLS certificate for the Argo CD config secret
3909 ## -----BEGIN CERTIFICATE-----
3911 ## -----END CERTIFICATE-----
3912 ## -----BEGIN CERTIFICATE-----
3914 ## -----END CERTIFICATE-----
3916 argocdServerTlsConfig:
3919 ## Argo admin password
3920 ## @param config.secret.argocdServerAdminPassword Argo CD server admin password. Autogenerated by default.
3922 argocdServerAdminPassword: ""
3923 ## Password modification time defaults to current time if not set
3924 ## @param config.secret.argocdServerAdminPasswordMtime Argo CD server password modification time
3926 ## argocdServerAdminPasswordMtime: "2006-01-02T15:04:05Z"
3928 argocdServerAdminPasswordMtime: ""
3929 ## Create a secret with optional repository credentials
3930 ## @param config.secret.repositoryCredentials Repository credentials to add to the Argo CD server confgi secret
3932 ## repositoryCredentials:
3933 ## sample-ssh-key: |
3934 ## -----BEGIN RSA PRIVATE KEY-----
3936 ## -----END RSA PRIVATE KEY-----
3938 repositoryCredentials: {}
3939 ## External Cluster Credentials
3941 ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#clusters
3942 ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/security/#external-cluster-credentials
3943 ## @param config.clusterCredentials Configure external cluster credentials
3945 ## - name: mycluster
3946 ## server: https://mycluster.com
3950 ## bearerToken: "<authentication token>"
3953 ## caData: "<base64 encoded certificate>"
3954 ## - name: mycluster2
3955 ## server: https://mycluster2.com
3958 ## namespaces: namespace1,namespace2
3960 ## bearerToken: "<authentication token>"
3963 ## caData: "<base64 encoded certificate>"
3965 clusterCredentials: []
3966## @section Init Container Parameters
3968## 'volumePermissions' init container parameters
3969## Changes the owner and group of the persistent volume mount point to runAsUser:fsGroup values
3970## based on the *podSecurityContext/*containerSecurityContext parameters
3973 ## @param volumePermissions.enabled Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup`
3976 ## OS Shell + Utility image
3977 ## @param volumePermissions.image.registry [default: REGISTRY_NAME] OS Shell + Utility image registry
3978 ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] OS Shell + Utility image repository
3979 ## @skip volumePermissions.image.tag OS Shell + Utility image tag (immutable tags are recommended)
3980 ## @param volumePermissions.image.digest OS Shell + Utility image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
3981 ## @param volumePermissions.image.pullPolicy OS Shell + Utility image pull policy
3982 ## @param volumePermissions.image.pullSecrets OS Shell + Utility image pull secrets
3985 registry: chainreg.biz
3986 repository: chainguard-private/os-shell-iamguarded
3989 pullPolicy: IfNotPresent
3990 ## Optionally specify an array of imagePullSecrets.
3991 ## Secrets must be manually created in the namespace.
3992 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
3995 ## - myRegistryKeySecretName
3998 ## Init container's resource requests and limits
3999 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
4000 ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production).
4002 resourcesPreset: "nano"
4003 ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
4014 ## Init container Container Security Context
4015 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
4016 ## @param volumePermissions.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
4017 ## @param volumePermissions.containerSecurityContext.runAsUser Set init container's Security Context runAsUser
4018 ## NOTE: when runAsUser is set to special value "auto", init container will try to chown the
4019 ## data folder to auto-determined user&group, using commands: `id -u`:`id -G | cut -d" " -f2`
4020 ## "auto" is especially useful for OpenShift which has scc with dynamic user ids (and 0 is not allowed)
4022 containerSecurityContext:
4025## @section Other Parameters
4027## RBAC configuration
4030 ## @param rbac.create Specifies whether RBAC resources should be created
4036 ## Iamguarded Redis image
4037 ## @param redis.image.registry [default: REGISTRY_NAME] Redis image registry
4038 ## @param redis.image.repository [default: REPOSITORY_NAME/redis] Redis image repository
4039 ## @skip redis.image.tag Redis image tag (immutable tags are recommended)
4040 ## @param redis.image.digest Redis image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
4041 ## @param redis.image.pullPolicy Redis image pull policy
4042 ## @param redis.image.pullSecrets Redis image pull secrets
4045 registry: chainreg.biz
4046 repository: chainguard-private/redis-server-iamguarded
4049 ## Specify a imagePullPolicy
4050 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
4052 pullPolicy: IfNotPresent
4053 ## Optionally specify an array of imagePullSecrets.
4054 ## Secrets must be manually created in the namespace.
4055 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
4058 ## - myRegistryKeySecretName
4061 ## @param redis.enabled Enable Redis dependency
4064 ## @param redis.nameOverride Name override for the Redis dependency
4067 ## @param redis.service.ports.redis Service port for Redis dependency
4072 ## Use password authentication
4073 ## @param redis.auth.enabled Enable Redis dependency authentication
4074 ## @param redis.auth.existingSecret Existing secret to load redis dependency password
4075 ## @param redis.auth.existingSecretPasswordKey Pasword key name inside the existing secret
4079 ## Name of existing secret object containing the password
4083 ## Password key to be retrieved from Redis® secret
4085 existingSecretPasswordKey: 'redis-password'
4087 ## @param redis.architecture Redis® architecture. Allowed values: `standalone` or `replication`
4088 ## TODO(miguelaeh): We need to test the chart with redis sentinel, it seems to be supported at: https://github.com/argoproj/argo-cd/blob/2a410187565e15633b6f2a8c8d8da22cf02b257d/util/cache/cache.go#L40
4090 architecture: standalone
4092## External Redis®
4095 ## Can be enabled after redisWait.enabled and redis.enabled are set to false
4096 ## @param externalRedis.enabled Enables External Redis
4100 ## @param externalRedis.host External Redis host
4104 ## @param externalRedis.port External Redis port
4107 ## Redis® password for authentication
4108 ## Ignored if existingSecret is set
4109 ## @param externalRedis.password External Redis password
4112 ## Name of existing secret object containing the password
4113 ## @param externalRedis.existingSecret Existing secret for the external redis
4116 ## Password key to be retrieved from Redis® secret
4117 ## @param externalRedis.existingSecretPasswordKey Password key for the existing secret containing the external redis password
4119 existingSecretPasswordKey: 'redis-password'
4120 ## Specify a label to use with the label selector
4121 ## @param externalRedis.selector External Redis selector labels
4126 # app.kubernetes.io/component: master
4127 # app.kubernetes.io/instance: redis
4128 # app.kubernetes.io/name: redis
4129## Wait-for-redis init container configuration
4132 ## @param redisWait.enabled Enables waiting for redis
4135 ## @param redisWait.extraArgs Additional arguments for the redis-cli call, such as TLS
4138 ## @param redisWait.containerSecurityContext.enabled Enabled Argo CD repo server containers' Security Context
4139 ## @param redisWait.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
4140 ## @param redisWait.containerSecurityContext.runAsUser Set Argo CD repo server containers' Security Context runAsUser
4141 ## @param redisWait.containerSecurityContext.runAsGroup Set Argo CD repo server containers' Security Context runAsGroup
4142 ## @param redisWait.containerSecurityContext.allowPrivilegeEscalation Set Argo CD repo server containers' Security Context allowPrivilegeEscalation
4143 ## @param redisWait.containerSecurityContext.capabilities.drop Set Argo CD containers' repo server Security Context capabilities to be dropped
4144 ## @param redisWait.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' repo server Security Context readOnlyRootFilesystem
4145 ## @param redisWait.containerSecurityContext.runAsNonRoot Set Argo CD repo server containers' Security Context runAsNonRoot
4146 ## @param redisWait.containerSecurityContext.privileged Set redisWait container's Security Context privileged
4147 ## @param redisWait.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
4149 containerSecurityContext:
4155 readOnlyRootFilesystem: true
4156 allowPrivilegeEscalation: false
4161 type: "RuntimeDefault"