blob: 54257c79e8b1b7422233f6745390dabefdfa1f32 [file] [log] [blame]
gio33d62932026-07-23 16:39:35 +04001# +docs:section=Global
2
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04003# Default values for cert-manager.
4# This is a YAML-formatted file.
5# Declare variables to be passed into your templates.
6global:
gio33d62932026-07-23 16:39:35 +04007 # Reference to one or more secrets to be used when pulling images.
8 # For more information, see [Pull an Image from a Private Registry](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/).
9 #
10 # For example:
11 # imagePullSecrets:
12 # - name: "image-pull-secret"
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040013 imagePullSecrets: []
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040014
giod55d03a2026-07-23 16:57:48 +040015 # Global node selector
16 #
17 # The nodeSelector on Pods tells Kubernetes to schedule Pods on the nodes with
18 # matching labels.
19 # For more information, see [Assigning Pods to Nodes](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).
20 #
21 # If a component-specific nodeSelector is also set, it will be merged and take precedence.
22 # +docs:property
23 nodeSelector: {}
24
gio33d62932026-07-23 16:39:35 +040025 # Labels to apply to all resources.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040026 # Please note that this does not add labels to the resources created dynamically by the controllers.
27 # For these resources, you have to add the labels in the template in the cert-manager custom resource:
gio33d62932026-07-23 16:39:35 +040028 # For example, podTemplate/ ingressTemplate in ACMEChallengeSolverHTTP01Ingress
29 # For more information, see the [cert-manager documentation](https://cert-manager.io/docs/reference/api-docs/#acme.cert-manager.io/v1.ACMEChallengeSolverHTTP01Ingress).
30 # For example, secretTemplate in CertificateSpec
31 # For more information, see the [cert-manager documentation](https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec).
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040032 commonLabels: {}
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040033
gio33d62932026-07-23 16:39:35 +040034 # The number of old ReplicaSets to retain to allow rollback (if not set, the default Kubernetes value is set to 10).
35 # +docs:property
36 # revisionHistoryLimit: 1
37
38 # The optional priority class to be used for the cert-manager pods.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040039 priorityClassName: ""
gio33d62932026-07-23 16:39:35 +040040
giod55d03a2026-07-23 16:57:48 +040041 # Set all pods to run in a user namespace without host access.
42 # Experimental: may be removed once the Kubernetes User Namespaces feature is GA.
43 #
44 # Requirements:
45 # - Kubernetes ≥ 1.33, or
46 # - Kubernetes 1.27–1.32 with UserNamespacesSupport feature gate enabled.
47 #
48 # Set to false to run pods in a user namespace without host access.
49 #
50 # See [limitations](https://kubernetes.io/docs/concepts/workloads/pods/user-namespaces/#limitations) for details.
51 # +docs:property
52 # hostUsers: false
53
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040054 rbac:
gio33d62932026-07-23 16:39:35 +040055 # Create required ClusterRoles and ClusterRoleBindings for cert-manager.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040056 create: true
gio33d62932026-07-23 16:39:35 +040057 # Aggregate ClusterRoles to Kubernetes default user-facing roles. For more information, see [User-facing roles](https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles)
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040058 aggregateClusterRoles: true
59
60 podSecurityPolicy:
gio33d62932026-07-23 16:39:35 +040061 # Create PodSecurityPolicy for cert-manager.
62 #
63 # Note that PodSecurityPolicy was deprecated in Kubernetes 1.21 and removed in Kubernetes 1.25.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040064 enabled: false
gio33d62932026-07-23 16:39:35 +040065 # Configure the PodSecurityPolicy to use AppArmor.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040066 useAppArmor: true
67
gio33d62932026-07-23 16:39:35 +040068 # Set the verbosity of cert-manager. A range of 0 - 6, with 6 being the most verbose.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040069 logLevel: 2
70
71 leaderElection:
gio33d62932026-07-23 16:39:35 +040072 # Override the namespace used for the leader election lease.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040073 namespace: "kube-system"
74
75 # The duration that non-leader candidates will wait after observing a
76 # leadership renewal until attempting to acquire leadership of a led but
77 # unrenewed leader slot. This is effectively the maximum duration that a
78 # leader can be stopped before it is replaced by another candidate.
gio33d62932026-07-23 16:39:35 +040079 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040080 # leaseDuration: 60s
81
82 # The interval between attempts by the acting master to renew a leadership
83 # slot before it stops leading. This must be less than or equal to the
84 # lease duration.
gio33d62932026-07-23 16:39:35 +040085 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040086 # renewDeadline: 40s
87
88 # The duration the clients should wait between attempting acquisition and
89 # renewal of a leadership.
gio33d62932026-07-23 16:39:35 +040090 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040091 # retryPeriod: 15s
92
gio33d62932026-07-23 16:39:35 +040093# This option is equivalent to setting crds.enabled=true and crds.keep=true.
94# Deprecated: use crds.enabled and crds.keep instead.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +040095installCRDs: false
96
gio33d62932026-07-23 16:39:35 +040097crds:
98 # This option decides if the CRDs should be installed
99 # as part of the Helm installation.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400100 enabled: false
101
gio33d62932026-07-23 16:39:35 +0400102 # This option makes it so that the "helm.sh/resource-policy": keep
103 # annotation is added to the CRD. This will prevent Helm from uninstalling
104 # the CRD when the Helm release is uninstalled.
105 # WARNING: when the CRDs are removed, all cert-manager custom resources
106 # (Certificates, Issuers, ...) will be removed too by the garbage collector.
107 keep: true
108
109# +docs:section=Controller
110
111# The number of replicas of the cert-manager controller to run.
112#
113# The default is 1, but in production set this to 2 or 3 to provide high
114# availability.
115#
116# If `replicas > 1`, consider setting `podDisruptionBudget.enabled=true`.
117#
118# Note that cert-manager uses leader election to ensure that there can
119# only be a single instance active at a time.
120replicaCount: 1
121
122# Deployment update strategy for the cert-manager controller deployment.
123# For more information, see the [Kubernetes documentation](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy).
124#
125# For example:
126# strategy:
127# type: RollingUpdate
128# rollingUpdate:
129# maxSurge: 0
130# maxUnavailable: 1
131strategy: {}
132
133podDisruptionBudget:
134 # Enable or disable the PodDisruptionBudget resource.
135 #
136 # This prevents downtime during voluntary disruptions such as during a Node upgrade.
137 # For example, the PodDisruptionBudget will block `kubectl drain`
138 # if it is used on the Node where the only remaining cert-manager
139 # Pod is currently running.
140 enabled: false
141
142 # This configures the minimum available pods for disruptions. It can either be set to
giob6e9f2f2026-07-23 16:53:10 +0400143 # an integer (e.g., 1) or a percentage value (e.g., 25%).
gio33d62932026-07-23 16:39:35 +0400144 # It cannot be used if `maxUnavailable` is set.
145 # +docs:property
146 # +docs:type=unknown
147 # minAvailable: 1
148
149 # This configures the maximum unavailable pods for disruptions. It can either be set to
giob6e9f2f2026-07-23 16:53:10 +0400150 # an integer (e.g., 1) or a percentage value (e.g., 25%).
gio33d62932026-07-23 16:39:35 +0400151 # it cannot be used if `minAvailable` is set.
152 # +docs:property
153 # +docs:type=unknown
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400154 # maxUnavailable: 1
155
gio33d62932026-07-23 16:39:35 +0400156# A comma-separated list of feature gates that should be enabled on the
157# controller pod.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400158featureGates: ""
159
gio33d62932026-07-23 16:39:35 +0400160# The maximum number of challenges that can be scheduled as 'processing' at once.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400161maxConcurrentChallenges: 60
162
163image:
gio33d62932026-07-23 16:39:35 +0400164 # The container registry to pull the manager image from.
165 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400166 # registry: quay.io
gio33d62932026-07-23 16:39:35 +0400167
168 # The container image for the cert-manager controller.
169 # +docs:property
170 repository: quay.io/jetstack/cert-manager-controller
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400171
172 # Override the image tag to deploy by setting this variable.
gio33d62932026-07-23 16:39:35 +0400173 # If no value is set, the chart's appVersion is used.
174 # +docs:property
175 # tag: vX.Y.Z
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400176
gio33d62932026-07-23 16:39:35 +0400177 # Setting a digest will override any tag.
178 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400179 # digest: sha256:0e072dddd1f7f8fc8909a2ca6f65e76c5f0d2fcfb8be47935ae3457e8bbceb20
gio33d62932026-07-23 16:39:35 +0400180
181 # Kubernetes imagePullPolicy on Deployment.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400182 pullPolicy: IfNotPresent
183
184# Override the namespace used to store DNS provider credentials etc. for ClusterIssuer
185# resources. By default, the same namespace as cert-manager is deployed within is
186# used. This namespace will not be automatically created by the Helm chart.
187clusterResourceNamespace: ""
188
gio33d62932026-07-23 16:39:35 +0400189# This namespace allows you to define where the services are installed into.
190# If not set then they use the namespace of the release.
191# This is helpful when installing cert manager as a chart dependency (sub chart).
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400192namespace: ""
193
gio33d62932026-07-23 16:39:35 +0400194# Override the "cert-manager.fullname" value. This value is used as part of
195# most of the names of the resources created by this Helm chart.
196# +docs:property
197# fullnameOverride: "my-cert-manager"
198
199# Override the "cert-manager.name" value, which is used to annotate some of
200# the resources that are created by this Chart (using "app.kubernetes.io/name").
201# NOTE: There are some inconsistencies in the Helm chart when it comes to
giob6e9f2f2026-07-23 16:53:10 +0400202# these annotations (some resources use, e.g., "cainjector.name" which resolves
gio33d62932026-07-23 16:39:35 +0400203# to the value "cainjector").
204# +docs:property
205# nameOverride: "my-cert-manager"
206
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400207serviceAccount:
gio33d62932026-07-23 16:39:35 +0400208 # Specifies whether a service account should be created.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400209 create: true
gio33d62932026-07-23 16:39:35 +0400210
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400211 # The name of the service account to use.
gio33d62932026-07-23 16:39:35 +0400212 # If not set and create is true, a name is generated using the fullname template.
213 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400214 # name: ""
gio33d62932026-07-23 16:39:35 +0400215
216 # Optional additional annotations to add to the controller's Service Account. Templates are allowed for both keys and values.
217 # Example using templating:
218 # annotations:
219 # "{{ .Chart.Name }}-helm-chart/version": "{{ .Chart.Version }}"
220 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400221 # annotations: {}
gio33d62932026-07-23 16:39:35 +0400222
223 # Optional additional labels to add to the controller's Service Account.
224 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400225 # labels: {}
gio33d62932026-07-23 16:39:35 +0400226
227 # Automount API credentials for a Service Account.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400228 automountServiceAccountToken: true
229
gio33d62932026-07-23 16:39:35 +0400230# Automounting API credentials for a particular pod.
231# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400232# automountServiceAccountToken: true
233
gio33d62932026-07-23 16:39:35 +0400234# When this flag is enabled, secrets will be automatically removed when the certificate resource is deleted.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400235enableCertificateOwnerRef: false
236
gio33d62932026-07-23 16:39:35 +0400237# This property is used to configure options for the controller pod.
238# This allows setting options that would usually be provided using flags.
239#
240# If `apiVersion` and `kind` are unspecified they default to the current latest
241# version (currently `controller.config.cert-manager.io/v1alpha1`). You can pin
242# the version by specifying the `apiVersion` yourself.
243#
244# For example:
245# config:
246# apiVersion: controller.config.cert-manager.io/v1alpha1
247# kind: ControllerConfiguration
248# logging:
249# verbosity: 2
250# format: text
251# leaderElectionConfig:
252# namespace: kube-system
253# kubernetesAPIQPS: 9000
254# kubernetesAPIBurst: 9000
255# numberOfConcurrentWorkers: 200
256# enableGatewayAPI: true
giob6e9f2f2026-07-23 16:53:10 +0400257# # Feature gates as of v1.18.1. Listed with their default values.
gio33d62932026-07-23 16:39:35 +0400258# # See https://cert-manager.io/docs/cli/controller/
259# featureGates:
giob6e9f2f2026-07-23 16:53:10 +0400260# AdditionalCertificateOutputFormats: true # GA - default=true
gio33d62932026-07-23 16:39:35 +0400261# AllAlpha: false # ALPHA - default=false
262# AllBeta: false # BETA - default=false
263# ExperimentalCertificateSigningRequestControllers: false # ALPHA - default=false
264# ExperimentalGatewayAPISupport: true # BETA - default=true
265# LiteralCertificateSubject: true # BETA - default=true
266# NameConstraints: true # BETA - default=true
267# OtherNames: false # ALPHA - default=false
268# SecretsFilteredCaching: true # BETA - default=true
269# ServerSideApply: false # ALPHA - default=false
270# StableCertificateRequestName: true # BETA - default=true
271# UseCertificateRequestBasicConstraints: false # ALPHA - default=false
giob6e9f2f2026-07-23 16:53:10 +0400272# UseDomainQualifiedFinalizer: true # GA - default=true
gio33d62932026-07-23 16:39:35 +0400273# ValidateCAA: false # ALPHA - default=false
giob6e9f2f2026-07-23 16:53:10 +0400274# DefaultPrivateKeyRotationPolicyAlways: true # BETA - default=true
275# ACMEHTTP01IngressPathTypeExact: true # BETA - default=true
gio33d62932026-07-23 16:39:35 +0400276# # Configure the metrics server for TLS
277# # See https://cert-manager.io/docs/devops-tips/prometheus-metrics/#tls
278# metricsTLSConfig:
279# dynamic:
280# secretNamespace: "cert-manager"
281# secretName: "cert-manager-metrics-ca"
282# dnsNames:
283# - cert-manager-metrics
284config: {}
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400285
gio33d62932026-07-23 16:39:35 +0400286# Setting Nameservers for DNS01 Self Check.
287# For more information, see the [cert-manager documentation](https://cert-manager.io/docs/configuration/acme/dns01/#setting-nameservers-for-dns01-self-check).
288
289# A comma-separated string with the host and port of the recursive nameservers cert-manager should query.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400290dns01RecursiveNameservers: ""
291
gio33d62932026-07-23 16:39:35 +0400292# Forces cert-manager to use only the recursive nameservers for verification.
293# Enabling this option could cause the DNS01 self check to take longer owing to caching performed by the recursive nameservers.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400294dns01RecursiveNameserversOnly: false
295
gio33d62932026-07-23 16:39:35 +0400296# Option to disable cert-manager's build-in auto-approver. The auto-approver
297# approves all CertificateRequests that reference issuers matching the 'approveSignerNames'
298# option. This 'disableAutoApproval' option is useful when you want to make all approval decisions
299# using a different approver (like approver-policy - https://github.com/cert-manager/approver-policy).
300disableAutoApproval: false
301
302# List of signer names that cert-manager will approve by default. CertificateRequests
303# referencing these signer names will be auto-approved by cert-manager. Defaults to just
304# approving the cert-manager.io Issuer and ClusterIssuer issuers. When set to an empty
305# array, ALL issuers will be auto-approved by cert-manager. To disable the auto-approval,
giob6e9f2f2026-07-23 16:53:10 +0400306# because, e.g., you are using approver-policy, you can enable 'disableAutoApproval'.
gio33d62932026-07-23 16:39:35 +0400307# ref: https://cert-manager.io/docs/concepts/certificaterequest/#approval
308# +docs:property
309approveSignerNames:
310- issuers.cert-manager.io/*
311- clusterissuers.cert-manager.io/*
312
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400313# Additional command line flags to pass to cert-manager controller binary.
gio33d62932026-07-23 16:39:35 +0400314# To see all available flags run `docker run quay.io/jetstack/cert-manager-controller:<version> --help`.
315#
316# Use this flag to enable or disable arbitrary controllers. For example, to disable the CertificateRequests approver.
317#
318# For example:
319# extraArgs:
320# - --controllers=*,-certificaterequests-approver
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400321extraArgs: []
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400322
gio33d62932026-07-23 16:39:35 +0400323# Additional environment variables to pass to cert-manager controller binary.
324# For example:
325# extraEnv:
326# - name: SOME_VAR
327# value: 'some value'
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400328extraEnv: []
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400329
gio33d62932026-07-23 16:39:35 +0400330# Resources to provide to the cert-manager controller pod.
331#
332# For example:
333# requests:
334# cpu: 10m
335# memory: 32Mi
336#
337# For more information, see [Resource Management for Pods and Containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400338resources: {}
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400339
gio33d62932026-07-23 16:39:35 +0400340# Pod Security Context.
341# For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
342# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400343securityContext:
344 runAsNonRoot: true
345 seccompProfile:
346 type: RuntimeDefault
347
gio33d62932026-07-23 16:39:35 +0400348# Container Security Context to be set on the controller component container.
349# For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
350# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400351containerSecurityContext:
352 allowPrivilegeEscalation: false
353 capabilities:
354 drop:
355 - ALL
gio33d62932026-07-23 16:39:35 +0400356 readOnlyRootFilesystem: true
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400357
gio33d62932026-07-23 16:39:35 +0400358# Additional volumes to add to the cert-manager controller pod.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400359volumes: []
360
gio33d62932026-07-23 16:39:35 +0400361# Additional volume mounts to add to the cert-manager controller container.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400362volumeMounts: []
363
gio33d62932026-07-23 16:39:35 +0400364# Optional additional annotations to add to the controller Deployment.
365# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400366# deploymentAnnotations: {}
367
gio33d62932026-07-23 16:39:35 +0400368# Optional additional annotations to add to the controller Pods.
369# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400370# podAnnotations: {}
371
gio33d62932026-07-23 16:39:35 +0400372# Optional additional labels to add to the controller Pods.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400373podLabels: {}
374
gio33d62932026-07-23 16:39:35 +0400375# Optional annotations to add to the controller Service.
376# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400377# serviceAnnotations: {}
378
gio33d62932026-07-23 16:39:35 +0400379# Optional additional labels to add to the controller Service.
380# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400381# serviceLabels: {}
382
gio33d62932026-07-23 16:39:35 +0400383# Optionally set the IP family policy for the controller Service to configure dual-stack; see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services).
384# +docs:property
385# serviceIPFamilyPolicy: ""
386
387# Optionally set the IP families for the controller Service that should be supported, in the order in which they should be applied to ClusterIP. Can be IPv4 and/or IPv6.
388# +docs:property
389# serviceIPFamilies: []
390
391# Optional DNS settings. These are useful if you have a public and private DNS zone for
392# the same domain on Route 53. The following is an example of ensuring
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400393# cert-manager can access an ingress or DNS TXT records at all times.
gio33d62932026-07-23 16:39:35 +0400394# Note that this requires Kubernetes 1.10 or `CustomPodDNS` feature gate enabled for
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400395# the cluster to work.
gio33d62932026-07-23 16:39:35 +0400396
397# Pod DNS policy.
398# For more information, see [Pod's DNS Policy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy).
399# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400400# podDnsPolicy: "None"
gio33d62932026-07-23 16:39:35 +0400401
402# Pod DNS configuration. The podDnsConfig field is optional and can work with any podDnsPolicy
403# settings. However, when a Pod's dnsPolicy is set to "None", the dnsConfig field has to be specified.
404# For more information, see [Pod's DNS Config](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config).
405# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400406# podDnsConfig:
407# nameservers:
408# - "1.1.1.1"
409# - "8.8.8.8"
410
gio33d62932026-07-23 16:39:35 +0400411# Optional hostAliases for cert-manager-controller pods. May be useful when performing ACME DNS-01 self checks.
412hostAliases: []
413# - ip: 127.0.0.1
414# hostnames:
415# - foo.local
416# - bar.local
417# - ip: 10.1.2.3
418# hostnames:
419# - foo.remote
420# - bar.remote
421
422# The nodeSelector on Pods tells Kubernetes to schedule Pods on the nodes with
423# matching labels.
424# For more information, see [Assigning Pods to Nodes](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).
425#
426# This default ensures that Pods are only scheduled to Linux nodes.
427# It prevents Pods being scheduled to Windows nodes in a mixed OS cluster.
428# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400429nodeSelector:
430 kubernetes.io/os: linux
431
gio33d62932026-07-23 16:39:35 +0400432# +docs:ignore
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400433ingressShim: {}
gio33d62932026-07-23 16:39:35 +0400434
435 # Optional default issuer to use for ingress resources.
436 # +docs:property=ingressShim.defaultIssuerName
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400437 # defaultIssuerName: ""
gio33d62932026-07-23 16:39:35 +0400438
439 # Optional default issuer kind to use for ingress resources.
440 # +docs:property=ingressShim.defaultIssuerKind
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400441 # defaultIssuerKind: ""
gio33d62932026-07-23 16:39:35 +0400442
443 # Optional default issuer group to use for ingress resources.
444 # +docs:property=ingressShim.defaultIssuerGroup
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400445 # defaultIssuerGroup: ""
446
gio33d62932026-07-23 16:39:35 +0400447# Use these variables to configure the HTTP_PROXY environment variables.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400448
gio33d62932026-07-23 16:39:35 +0400449# Configures the HTTP_PROXY environment variable where a HTTP proxy is required.
450# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400451# http_proxy: "http://proxy:8080"
gio33d62932026-07-23 16:39:35 +0400452
453# Configures the HTTPS_PROXY environment variable where a HTTP proxy is required.
454# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400455# https_proxy: "https://proxy:8080"
gio33d62932026-07-23 16:39:35 +0400456
457# Configures the NO_PROXY environment variable where a HTTP proxy is required,
458# but certain domains should be excluded.
459# +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400460# no_proxy: 127.0.0.1,localhost
461
gio33d62932026-07-23 16:39:35 +0400462# A Kubernetes Affinity, if required. For more information, see [Affinity v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#affinity-v1-core).
463#
464# For example:
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400465# affinity:
466# nodeAffinity:
467# requiredDuringSchedulingIgnoredDuringExecution:
468# nodeSelectorTerms:
469# - matchExpressions:
470# - key: foo.bar.com/role
471# operator: In
472# values:
473# - master
474affinity: {}
475
gio33d62932026-07-23 16:39:35 +0400476# A list of Kubernetes Tolerations, if required. For more information, see [Toleration v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#toleration-v1-core).
477#
478# For example:
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400479# tolerations:
480# - key: foo.bar.com/role
481# operator: Equal
482# value: master
483# effect: NoSchedule
484tolerations: []
485
gio33d62932026-07-23 16:39:35 +0400486# A list of Kubernetes TopologySpreadConstraints, if required. For more information, see [Topology spread constraint v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#topologyspreadconstraint-v1-core
487#
488# For example:
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400489# topologySpreadConstraints:
490# - maxSkew: 2
491# topologyKey: topology.kubernetes.io/zone
492# whenUnsatisfiable: ScheduleAnyway
493# labelSelector:
494# matchLabels:
495# app.kubernetes.io/instance: cert-manager
496# app.kubernetes.io/component: controller
497topologySpreadConstraints: []
498
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400499# LivenessProbe settings for the controller container of the controller Pod.
500#
gio33d62932026-07-23 16:39:35 +0400501# This is enabled by default, in order to enable the clock-skew liveness probe that
502# restarts the controller in case of a skew between the system clock and the monotonic clock.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400503# LivenessProbe durations and thresholds are based on those used for the Kubernetes
gio33d62932026-07-23 16:39:35 +0400504# controller-manager. For more information see the following on the
505# [Kubernetes GitHub repository](https://github.com/kubernetes/kubernetes/blob/806b30170c61a38fedd54cc9ede4cd6275a1ad3b/cmd/kubeadm/app/util/staticpod/utils.go#L241-L245)
506# +docs:property
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400507livenessProbe:
gio33d62932026-07-23 16:39:35 +0400508 enabled: true
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +0400509 initialDelaySeconds: 10
510 periodSeconds: 10
511 timeoutSeconds: 15
512 successThreshold: 1
513 failureThreshold: 8
514
gio33d62932026-07-23 16:39:35 +0400515# enableServiceLinks indicates whether information about services should be
516# injected into the pod's environment variables, matching the syntax of Docker
517# links.
518enableServiceLinks: false
519
520# +docs:section=Prometheus
521
522prometheus:
523 # Enable Prometheus monitoring for the cert-manager controller and webhook.
524 # If you use the Prometheus Operator, set prometheus.podmonitor.enabled or
525 # prometheus.servicemonitor.enabled, to create a PodMonitor or a
526 # ServiceMonitor resource.
527 # Otherwise, 'prometheus.io' annotations are added to the cert-manager and
528 # cert-manager-webhook Deployments.
giob6e9f2f2026-07-23 16:53:10 +0400529 # Note that you cannot enable both PodMonitor and ServiceMonitor as they are
gio33d62932026-07-23 16:39:35 +0400530 # mutually exclusive. Enabling both will result in an error.
531 enabled: true
532
533 servicemonitor:
534 # Create a ServiceMonitor to add cert-manager to Prometheus.
535 enabled: false
536
537 # The namespace that the service monitor should live in, defaults
538 # to the cert-manager namespace.
539 # +docs:property
540 # namespace: cert-manager
541
542 # Specifies the `prometheus` label on the created ServiceMonitor. This is
543 # used when different Prometheus instances have label selectors matching
544 # different ServiceMonitors.
545 prometheusInstance: default
546
547 # The target port to set on the ServiceMonitor. This must match the port that the
548 # cert-manager controller is listening on for metrics.
giob6e9f2f2026-07-23 16:53:10 +0400549 # +docs:type=string,integer
550 targetPort: http-metrics
gio33d62932026-07-23 16:39:35 +0400551
552 # The path to scrape for metrics.
553 path: /metrics
554
555 # The interval to scrape metrics.
556 interval: 60s
557
558 # The timeout before a metrics scrape fails.
559 scrapeTimeout: 30s
560
561 # Additional labels to add to the ServiceMonitor.
562 labels: {}
563
564 # Additional annotations to add to the ServiceMonitor.
565 annotations: {}
566
567 # Keep labels from scraped data, overriding server-side labels.
568 honorLabels: false
569
570 # EndpointAdditionalProperties allows setting additional properties on the
571 # endpoint such as relabelings, metricRelabelings etc.
572 #
573 # For example:
574 # endpointAdditionalProperties:
575 # relabelings:
576 # - action: replace
577 # sourceLabels:
578 # - __meta_kubernetes_pod_node_name
579 # targetLabel: instance
580 #
581 # +docs:property
582 endpointAdditionalProperties: {}
583
giob6e9f2f2026-07-23 16:53:10 +0400584 # Note that you cannot enable both PodMonitor and ServiceMonitor as they are mutually exclusive. Enabling both will result in an error.
gio33d62932026-07-23 16:39:35 +0400585 podmonitor:
586 # Create a PodMonitor to add cert-manager to Prometheus.
587 enabled: false
588
589 # The namespace that the pod monitor should live in, defaults
590 # to the cert-manager namespace.
591 # +docs:property
592 # namespace: cert-manager
593
594 # Specifies the `prometheus` label on the created PodMonitor. This is
595 # used when different Prometheus instances have label selectors matching
596 # different PodMonitors.
597 prometheusInstance: default
598
599 # The path to scrape for metrics.
600 path: /metrics
601
602 # The interval to scrape metrics.
603 interval: 60s
604
605 # The timeout before a metrics scrape fails.
606 scrapeTimeout: 30s
607
608 # Additional labels to add to the PodMonitor.
609 labels: {}
610
611 # Additional annotations to add to the PodMonitor.
612 annotations: {}
613
614 # Keep labels from scraped data, overriding server-side labels.
615 honorLabels: false
616
617 # EndpointAdditionalProperties allows setting additional properties on the
618 # endpoint such as relabelings, metricRelabelings etc.
619 #
620 # For example:
621 # endpointAdditionalProperties:
622 # relabelings:
623 # - action: replace
624 # sourceLabels:
625 # - __meta_kubernetes_pod_node_name
626 # targetLabel: instance
627 # # Configure the PodMonitor for TLS connections
628 # # See https://cert-manager.io/docs/devops-tips/prometheus-metrics/#tls
629 # scheme: https
630 # tlsConfig:
631 # serverName: cert-manager-metrics
632 # ca:
633 # secret:
634 # name: cert-manager-metrics-ca
635 # key: "tls.crt"
636 #
637 # +docs:property
638 endpointAdditionalProperties: {}
639
640# +docs:section=Webhook
641
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400642webhook:
gio33d62932026-07-23 16:39:35 +0400643 # Number of replicas of the cert-manager webhook to run.
644 #
645 # The default is 1, but in production set this to 2 or 3 to provide high
646 # availability.
647 #
648 # If `replicas > 1`, consider setting `webhook.podDisruptionBudget.enabled=true`.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400649 replicaCount: 1
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400650
gio33d62932026-07-23 16:39:35 +0400651 # The number of seconds the API server should wait for the webhook to respond before treating the call as a failure.
652 # The value must be between 1 and 30 seconds. For more information, see
653 # [Validating webhook configuration v1](https://kubernetes.io/docs/reference/kubernetes-api/extend-resources/validating-webhook-configuration-v1/).
654 #
655 # The default is set to the maximum value of 30 seconds as
656 # users sometimes report that the connection between the K8S API server and
657 # the cert-manager webhook server times out.
658 # If *this* timeout is reached, the error message will be "context deadline exceeded",
659 # which doesn't help the user diagnose what phase of the HTTPS connection timed out.
660 # For example, it could be during DNS resolution, TCP connection, TLS
661 # negotiation, HTTP negotiation, or slow HTTP response from the webhook
662 # server.
663 # By setting this timeout to its maximum value the underlying timeout error
664 # message has more chance of being returned to the end user.
665 timeoutSeconds: 30
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400666
gio33d62932026-07-23 16:39:35 +0400667 # This is used to configure options for the webhook pod.
668 # This allows setting options that would usually be provided using flags.
669 #
670 # If `apiVersion` and `kind` are unspecified they default to the current latest
671 # version (currently `webhook.config.cert-manager.io/v1alpha1`). You can pin
672 # the version by specifying the `apiVersion` yourself.
673 #
674 # For example:
675 # apiVersion: webhook.config.cert-manager.io/v1alpha1
676 # kind: WebhookConfiguration
677 # # The port that the webhook listens on for requests.
678 # # In GKE private clusters, by default Kubernetes apiservers are allowed to
679 # # talk to the cluster nodes only on 443 and 10250. Configuring
680 # # securePort: 10250 therefore will work out-of-the-box without needing to add firewall
681 # # rules or requiring NET_BIND_SERVICE capabilities to bind port numbers < 1000.
682 # # This should be uncommented and set as a default by the chart once
683 # # the apiVersion of WebhookConfiguration graduates beyond v1alpha1.
684 # securePort: 10250
685 # # Configure the metrics server for TLS
686 # # See https://cert-manager.io/docs/devops-tips/prometheus-metrics/#tls
687 # metricsTLSConfig:
688 # dynamic:
689 # secretNamespace: "cert-manager"
690 # secretName: "cert-manager-metrics-ca"
691 # dnsNames:
692 # - cert-manager-metrics
693 config: {}
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400694
gio33d62932026-07-23 16:39:35 +0400695 # The update strategy for the cert-manager webhook deployment.
696 # For more information, see the [Kubernetes documentation](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy)
697 #
698 # For example:
699 # strategy:
700 # type: RollingUpdate
701 # rollingUpdate:
702 # maxSurge: 0
703 # maxUnavailable: 1
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400704 strategy: {}
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400705
gio33d62932026-07-23 16:39:35 +0400706 # Pod Security Context to be set on the webhook component Pod.
707 # For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
708 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400709 securityContext:
710 runAsNonRoot: true
711 seccompProfile:
712 type: RuntimeDefault
713
gio33d62932026-07-23 16:39:35 +0400714 # Container Security Context to be set on the webhook component container.
715 # For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
716 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400717 containerSecurityContext:
718 allowPrivilegeEscalation: false
719 capabilities:
720 drop:
721 - ALL
gio33d62932026-07-23 16:39:35 +0400722 readOnlyRootFilesystem: true
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400723
gio33d62932026-07-23 16:39:35 +0400724 podDisruptionBudget:
725 # Enable or disable the PodDisruptionBudget resource.
726 #
727 # This prevents downtime during voluntary disruptions such as during a Node upgrade.
728 # For example, the PodDisruptionBudget will block `kubectl drain`
729 # if it is used on the Node where the only remaining cert-manager
730 # Pod is currently running.
731 enabled: false
732
733 # This property configures the minimum available pods for disruptions. Can either be set to
giob6e9f2f2026-07-23 16:53:10 +0400734 # an integer (e.g., 1) or a percentage value (e.g., 25%).
gio33d62932026-07-23 16:39:35 +0400735 # It cannot be used if `maxUnavailable` is set.
736 # +docs:property
737 # +docs:type=unknown
738 # minAvailable: 1
739
740 # This property configures the maximum unavailable pods for disruptions. Can either be set to
giob6e9f2f2026-07-23 16:53:10 +0400741 # an integer (e.g., 1) or a percentage value (e.g., 25%).
gio33d62932026-07-23 16:39:35 +0400742 # It cannot be used if `minAvailable` is set.
743 # +docs:property
744 # +docs:type=unknown
745 # maxUnavailable: 1
746
747 # Optional additional annotations to add to the webhook Deployment.
748 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400749 # deploymentAnnotations: {}
750
gio33d62932026-07-23 16:39:35 +0400751 # Optional additional annotations to add to the webhook Pods.
752 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400753 # podAnnotations: {}
754
gio33d62932026-07-23 16:39:35 +0400755 # Optional additional annotations to add to the webhook Service.
756 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400757 # serviceAnnotations: {}
758
gio33d62932026-07-23 16:39:35 +0400759 # Optional additional annotations to add to the webhook MutatingWebhookConfiguration.
760 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400761 # mutatingWebhookConfigurationAnnotations: {}
762
gio33d62932026-07-23 16:39:35 +0400763 # Optional additional annotations to add to the webhook ValidatingWebhookConfiguration.
764 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400765 # validatingWebhookConfigurationAnnotations: {}
766
gio33d62932026-07-23 16:39:35 +0400767 validatingWebhookConfiguration:
768 # Configure spec.namespaceSelector for validating webhooks.
769 # +docs:property
770 namespaceSelector:
771 matchExpressions:
772 - key: "cert-manager.io/disable-validation"
773 operator: "NotIn"
774 values:
775 - "true"
776
777 mutatingWebhookConfiguration:
778 # Configure spec.namespaceSelector for mutating webhooks.
779 # +docs:property
780 namespaceSelector: {}
781 # matchLabels:
782 # key: value
783 # matchExpressions:
784 # - key: kubernetes.io/metadata.name
785 # operator: NotIn
786 # values:
787 # - kube-system
788
789
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400790 # Additional command line flags to pass to cert-manager webhook binary.
gio33d62932026-07-23 16:39:35 +0400791 # To see all available flags run `docker run quay.io/jetstack/cert-manager-webhook:<version> --help`.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400792 extraArgs: []
gio33d62932026-07-23 16:39:35 +0400793 # Path to a file containing a WebhookConfiguration object used to configure the webhook.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400794 # - --config=<path-to-config-file>
795
gio33d62932026-07-23 16:39:35 +0400796 # Additional environment variables to pass to cert-manager webhook binary.
797 # For example:
798 # extraEnv:
799 # - name: SOME_VAR
800 # value: 'some value'
801 extraEnv: []
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400802
gio33d62932026-07-23 16:39:35 +0400803 # Comma separated list of feature gates that should be enabled on the
804 # webhook pod.
805 featureGates: ""
806
807 # Resources to provide to the cert-manager webhook pod.
808 #
809 # For example:
810 # requests:
811 # cpu: 10m
812 # memory: 32Mi
813 #
814 # For more information, see [Resource Management for Pods and Containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
815 resources: {}
816
817 # Liveness probe values.
818 # For more information, see [Container probes](https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes).
819 #
820 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400821 livenessProbe:
822 failureThreshold: 3
823 initialDelaySeconds: 60
824 periodSeconds: 10
825 successThreshold: 1
826 timeoutSeconds: 1
gio33d62932026-07-23 16:39:35 +0400827
828 # Readiness probe values.
829 # For more information, see [Container probes](https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes).
830 #
831 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400832 readinessProbe:
833 failureThreshold: 3
834 initialDelaySeconds: 5
835 periodSeconds: 5
836 successThreshold: 1
837 timeoutSeconds: 1
838
gio33d62932026-07-23 16:39:35 +0400839 # The nodeSelector on Pods tells Kubernetes to schedule Pods on the nodes with
840 # matching labels.
841 # For more information, see [Assigning Pods to Nodes](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).
842 #
843 # This default ensures that Pods are only scheduled to Linux nodes.
844 # It prevents Pods being scheduled to Windows nodes in a mixed OS cluster.
845 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400846 nodeSelector:
847 kubernetes.io/os: linux
848
gio33d62932026-07-23 16:39:35 +0400849 # A Kubernetes Affinity, if required. For more information, see [Affinity v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#affinity-v1-core).
850 #
851 # For example:
852 # affinity:
853 # nodeAffinity:
854 # requiredDuringSchedulingIgnoredDuringExecution:
855 # nodeSelectorTerms:
856 # - matchExpressions:
857 # - key: foo.bar.com/role
858 # operator: In
859 # values:
860 # - master
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400861 affinity: {}
862
gio33d62932026-07-23 16:39:35 +0400863 # A list of Kubernetes Tolerations, if required. For more information, see [Toleration v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#toleration-v1-core).
864 #
865 # For example:
866 # tolerations:
867 # - key: foo.bar.com/role
868 # operator: Equal
869 # value: master
870 # effect: NoSchedule
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400871 tolerations: []
872
gio33d62932026-07-23 16:39:35 +0400873 # A list of Kubernetes TopologySpreadConstraints, if required. For more information, see [Topology spread constraint v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#topologyspreadconstraint-v1-core).
874 #
875 # For example:
876 # topologySpreadConstraints:
877 # - maxSkew: 2
878 # topologyKey: topology.kubernetes.io/zone
879 # whenUnsatisfiable: ScheduleAnyway
880 # labelSelector:
881 # matchLabels:
882 # app.kubernetes.io/instance: cert-manager
883 # app.kubernetes.io/component: controller
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400884 topologySpreadConstraints: []
885
gio33d62932026-07-23 16:39:35 +0400886 # Optional additional labels to add to the Webhook Pods.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400887 podLabels: {}
888
gio33d62932026-07-23 16:39:35 +0400889 # Optional additional labels to add to the Webhook Service.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400890 serviceLabels: {}
891
gio33d62932026-07-23 16:39:35 +0400892 # Optionally set the IP family policy for the controller Service to configure dual-stack; see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services).
893 serviceIPFamilyPolicy: ""
894
895 # Optionally set the IP families for the controller Service that should be supported, in the order in which they should be applied to ClusterIP. Can be IPv4 and/or IPv6.
896 serviceIPFamilies: []
897
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400898 image:
gio33d62932026-07-23 16:39:35 +0400899 # The container registry to pull the webhook image from.
900 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400901 # registry: quay.io
gio33d62932026-07-23 16:39:35 +0400902
903 # The container image for the cert-manager webhook
904 # +docs:property
905 repository: quay.io/jetstack/cert-manager-webhook
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400906
907 # Override the image tag to deploy by setting this variable.
908 # If no value is set, the chart's appVersion will be used.
gio33d62932026-07-23 16:39:35 +0400909 # +docs:property
910 # tag: vX.Y.Z
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400911
912 # Setting a digest will override any tag
gio33d62932026-07-23 16:39:35 +0400913 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400914 # digest: sha256:0e072dddd1f7f8fc8909a2ca6f65e76c5f0d2fcfb8be47935ae3457e8bbceb20
915
gio33d62932026-07-23 16:39:35 +0400916 # Kubernetes imagePullPolicy on Deployment.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400917 pullPolicy: IfNotPresent
918
919 serviceAccount:
gio33d62932026-07-23 16:39:35 +0400920 # Specifies whether a service account should be created.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400921 create: true
gio33d62932026-07-23 16:39:35 +0400922
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400923 # The name of the service account to use.
gio33d62932026-07-23 16:39:35 +0400924 # If not set and create is true, a name is generated using the fullname template.
925 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400926 # name: ""
gio33d62932026-07-23 16:39:35 +0400927
928 # Optional additional annotations to add to the webhook's Service Account.
929 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400930 # annotations: {}
gio33d62932026-07-23 16:39:35 +0400931
932 # Optional additional labels to add to the webhook's Service Account.
933 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400934 # labels: {}
gio33d62932026-07-23 16:39:35 +0400935
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400936 # Automount API credentials for a Service Account.
937 automountServiceAccountToken: true
938
gio33d62932026-07-23 16:39:35 +0400939 # Automounting API credentials for a particular pod.
940 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400941 # automountServiceAccountToken: true
942
gio33d62932026-07-23 16:39:35 +0400943 # The port that the webhook listens on for requests.
944 # In GKE private clusters, by default Kubernetes apiservers are allowed to
945 # talk to the cluster nodes only on 443 and 10250. Configuring
946 # securePort: 10250, therefore will work out-of-the-box without needing to add firewall
947 # rules or requiring NET_BIND_SERVICE capabilities to bind port numbers <1000.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400948 securePort: 10250
949
950 # Specifies if the webhook should be started in hostNetwork mode.
951 #
952 # Required for use in some managed kubernetes clusters (such as AWS EKS) with custom
953 # CNI (such as calico), because control-plane managed by AWS cannot communicate
954 # with pods' IP CIDR and admission webhooks are not working
955 #
956 # Since the default port for the webhook conflicts with kubelet on the host
957 # network, `webhook.securePort` should be changed to an available port if
958 # running in hostNetwork mode.
959 hostNetwork: false
960
961 # Specifies how the service should be handled. Useful if you want to expose the
gio33d62932026-07-23 16:39:35 +0400962 # webhook outside of the cluster. In some cases, the control plane cannot
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400963 # reach internal services.
964 serviceType: ClusterIP
gio33d62932026-07-23 16:39:35 +0400965
966 # Specify the load balancer IP for the created service.
967 # +docs:property
968 # loadBalancerIP: "10.10.10.10"
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400969
970 # Overrides the mutating webhook and validating webhook so they reach the webhook
971 # service using the `url` field instead of a service.
972 url: {}
973 # host:
974
975 # Enables default network policies for webhooks.
976 networkPolicy:
gio33d62932026-07-23 16:39:35 +0400977 # Create network policies for the webhooks.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400978 enabled: false
gio33d62932026-07-23 16:39:35 +0400979
980 # Ingress rule for the webhook network policy. By default, it allows all
981 # inbound traffic.
982 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400983 ingress:
984 - from:
985 - ipBlock:
986 cidr: 0.0.0.0/0
giod55d03a2026-07-23 16:57:48 +0400987 - ipBlock:
988 cidr: "::/0"
gio33d62932026-07-23 16:39:35 +0400989
990 # Egress rule for the webhook network policy. By default, it allows all
991 # outbound traffic to ports 80 and 443, as well as DNS ports.
992 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +0400993 egress:
994 - ports:
995 - port: 80
996 protocol: TCP
997 - port: 443
998 protocol: TCP
999 - port: 53
1000 protocol: TCP
1001 - port: 53
1002 protocol: UDP
gio33d62932026-07-23 16:39:35 +04001003 # On OpenShift and OKD, the Kubernetes API server listens on.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001004 # port 6443.
1005 - port: 6443
1006 protocol: TCP
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001007 to:
1008 - ipBlock:
1009 cidr: 0.0.0.0/0
giod55d03a2026-07-23 16:57:48 +04001010 - ipBlock:
1011 cidr: "::/0"
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001012
gio33d62932026-07-23 16:39:35 +04001013 # Additional volumes to add to the cert-manager controller pod.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001014 volumes: []
gio33d62932026-07-23 16:39:35 +04001015
1016 # Additional volume mounts to add to the cert-manager controller container.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001017 volumeMounts: []
1018
gio33d62932026-07-23 16:39:35 +04001019 # enableServiceLinks indicates whether information about services should be
1020 # injected into the pod's environment variables, matching the syntax of Docker
1021 # links.
1022 enableServiceLinks: false
1023
1024# +docs:section=CA Injector
1025
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001026cainjector:
gio33d62932026-07-23 16:39:35 +04001027 # Create the CA Injector deployment
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001028 enabled: true
gio33d62932026-07-23 16:39:35 +04001029
1030 # The number of replicas of the cert-manager cainjector to run.
1031 #
1032 # The default is 1, but in production set this to 2 or 3 to provide high
1033 # availability.
1034 #
1035 # If `replicas > 1`, consider setting `cainjector.podDisruptionBudget.enabled=true`.
1036 #
1037 # Note that cert-manager uses leader election to ensure that there can
1038 # only be a single instance active at a time.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001039 replicaCount: 1
1040
gio33d62932026-07-23 16:39:35 +04001041 # This is used to configure options for the cainjector pod.
1042 # It allows setting options that are usually provided via flags.
1043 #
1044 # If `apiVersion` and `kind` are unspecified they default to the current latest
1045 # version (currently `cainjector.config.cert-manager.io/v1alpha1`). You can pin
1046 # the version by specifying the `apiVersion` yourself.
1047 #
1048 # For example:
1049 # apiVersion: cainjector.config.cert-manager.io/v1alpha1
1050 # kind: CAInjectorConfiguration
1051 # logging:
1052 # verbosity: 2
1053 # format: text
1054 # leaderElectionConfig:
1055 # namespace: kube-system
1056 # # Configure the metrics server for TLS
1057 # # See https://cert-manager.io/docs/devops-tips/prometheus-metrics/#tls
1058 # metricsTLSConfig:
1059 # dynamic:
1060 # secretNamespace: "cert-manager"
1061 # secretName: "cert-manager-metrics-ca"
1062 # dnsNames:
1063 # - cert-manager-metrics
1064 config: {}
1065
1066 # Deployment update strategy for the cert-manager cainjector deployment.
1067 # For more information, see the [Kubernetes documentation](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy).
1068 #
1069 # For example:
1070 # strategy:
1071 # type: RollingUpdate
1072 # rollingUpdate:
1073 # maxSurge: 0
1074 # maxUnavailable: 1
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001075 strategy: {}
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001076
1077 # Pod Security Context to be set on the cainjector component Pod
gio33d62932026-07-23 16:39:35 +04001078 # For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
1079 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001080 securityContext:
1081 runAsNonRoot: true
1082 seccompProfile:
1083 type: RuntimeDefault
1084
1085 # Container Security Context to be set on the cainjector component container
gio33d62932026-07-23 16:39:35 +04001086 # For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
1087 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001088 containerSecurityContext:
1089 allowPrivilegeEscalation: false
1090 capabilities:
1091 drop:
1092 - ALL
gio33d62932026-07-23 16:39:35 +04001093 readOnlyRootFilesystem: true
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001094
gio33d62932026-07-23 16:39:35 +04001095 podDisruptionBudget:
1096 # Enable or disable the PodDisruptionBudget resource.
1097 #
1098 # This prevents downtime during voluntary disruptions such as during a Node upgrade.
1099 # For example, the PodDisruptionBudget will block `kubectl drain`
1100 # if it is used on the Node where the only remaining cert-manager
1101 # Pod is currently running.
1102 enabled: false
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001103
gio33d62932026-07-23 16:39:35 +04001104 # `minAvailable` configures the minimum available pods for disruptions. It can either be set to
giob6e9f2f2026-07-23 16:53:10 +04001105 # an integer (e.g., 1) or a percentage value (e.g., 25%).
gio33d62932026-07-23 16:39:35 +04001106 # Cannot be used if `maxUnavailable` is set.
1107 # +docs:property
1108 # +docs:type=unknown
1109 # minAvailable: 1
1110
1111 # `maxUnavailable` configures the maximum unavailable pods for disruptions. It can either be set to
giob6e9f2f2026-07-23 16:53:10 +04001112 # an integer (e.g., 1) or a percentage value (e.g., 25%).
gio33d62932026-07-23 16:39:35 +04001113 # Cannot be used if `minAvailable` is set.
1114 # +docs:property
1115 # +docs:type=unknown
1116 # maxUnavailable: 1
1117
1118 # Optional additional annotations to add to the cainjector Deployment.
1119 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001120 # deploymentAnnotations: {}
1121
gio33d62932026-07-23 16:39:35 +04001122 # Optional additional annotations to add to the cainjector Pods.
1123 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001124 # podAnnotations: {}
1125
gio33d62932026-07-23 16:39:35 +04001126 # Optional additional annotations to add to the cainjector metrics Service.
1127 # +docs:property
1128 # serviceAnnotations: {}
1129
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001130 # Additional command line flags to pass to cert-manager cainjector binary.
gio33d62932026-07-23 16:39:35 +04001131 # To see all available flags run `docker run quay.io/jetstack/cert-manager-cainjector:<version> --help`.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001132 extraArgs: []
gio33d62932026-07-23 16:39:35 +04001133 # Enable profiling for cainjector.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001134 # - --enable-profiling=true
1135
gio33d62932026-07-23 16:39:35 +04001136 # Additional environment variables to pass to cert-manager cainjector binary.
1137 # For example:
1138 # extraEnv:
1139 # - name: SOME_VAR
1140 # value: 'some value'
1141 extraEnv: []
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001142
gio33d62932026-07-23 16:39:35 +04001143 # Comma separated list of feature gates that should be enabled on the
1144 # cainjector pod.
1145 featureGates: ""
1146
1147 # Resources to provide to the cert-manager cainjector pod.
1148 #
1149 # For example:
1150 # requests:
1151 # cpu: 10m
1152 # memory: 32Mi
1153 #
1154 # For more information, see [Resource Management for Pods and Containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
1155 resources: {}
1156
1157
1158 # The nodeSelector on Pods tells Kubernetes to schedule Pods on the nodes with
1159 # matching labels.
1160 # For more information, see [Assigning Pods to Nodes](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).
1161 #
1162 # This default ensures that Pods are only scheduled to Linux nodes.
1163 # It prevents Pods being scheduled to Windows nodes in a mixed OS cluster.
1164 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001165 nodeSelector:
1166 kubernetes.io/os: linux
1167
gio33d62932026-07-23 16:39:35 +04001168 # A Kubernetes Affinity, if required. For more information, see [Affinity v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#affinity-v1-core).
1169 #
1170 # For example:
1171 # affinity:
1172 # nodeAffinity:
1173 # requiredDuringSchedulingIgnoredDuringExecution:
1174 # nodeSelectorTerms:
1175 # - matchExpressions:
1176 # - key: foo.bar.com/role
1177 # operator: In
1178 # values:
1179 # - master
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001180 affinity: {}
1181
gio33d62932026-07-23 16:39:35 +04001182 # A list of Kubernetes Tolerations, if required. For more information, see [Toleration v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#toleration-v1-core).
1183 #
1184 # For example:
1185 # tolerations:
1186 # - key: foo.bar.com/role
1187 # operator: Equal
1188 # value: master
1189 # effect: NoSchedule
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001190 tolerations: []
1191
gio33d62932026-07-23 16:39:35 +04001192 # A list of Kubernetes TopologySpreadConstraints, if required. For more information, see [Topology spread constraint v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#topologyspreadconstraint-v1-core).
1193 #
1194 # For example:
1195 # topologySpreadConstraints:
1196 # - maxSkew: 2
1197 # topologyKey: topology.kubernetes.io/zone
1198 # whenUnsatisfiable: ScheduleAnyway
1199 # labelSelector:
1200 # matchLabels:
1201 # app.kubernetes.io/instance: cert-manager
1202 # app.kubernetes.io/component: controller
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001203 topologySpreadConstraints: []
1204
gio33d62932026-07-23 16:39:35 +04001205 # Optional additional labels to add to the CA Injector Pods.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001206 podLabels: {}
1207
gio33d62932026-07-23 16:39:35 +04001208 # Optional additional labels to add to the CA Injector metrics Service.
1209 serviceLabels: {}
1210
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001211 image:
gio33d62932026-07-23 16:39:35 +04001212 # The container registry to pull the cainjector image from.
1213 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001214 # registry: quay.io
gio33d62932026-07-23 16:39:35 +04001215
1216 # The container image for the cert-manager cainjector
1217 # +docs:property
1218 repository: quay.io/jetstack/cert-manager-cainjector
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001219
1220 # Override the image tag to deploy by setting this variable.
1221 # If no value is set, the chart's appVersion will be used.
gio33d62932026-07-23 16:39:35 +04001222 # +docs:property
1223 # tag: vX.Y.Z
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001224
gio33d62932026-07-23 16:39:35 +04001225 # Setting a digest will override any tag.
1226 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001227 # digest: sha256:0e072dddd1f7f8fc8909a2ca6f65e76c5f0d2fcfb8be47935ae3457e8bbceb20
1228
gio33d62932026-07-23 16:39:35 +04001229 # Kubernetes imagePullPolicy on Deployment.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001230 pullPolicy: IfNotPresent
1231
1232 serviceAccount:
gio33d62932026-07-23 16:39:35 +04001233 # Specifies whether a service account should be created.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001234 create: true
gio33d62932026-07-23 16:39:35 +04001235
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001236 # The name of the service account to use.
1237 # If not set and create is true, a name is generated using the fullname template
gio33d62932026-07-23 16:39:35 +04001238 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001239 # name: ""
gio33d62932026-07-23 16:39:35 +04001240
1241 # Optional additional annotations to add to the cainjector's Service Account.
1242 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001243 # annotations: {}
gio33d62932026-07-23 16:39:35 +04001244
1245 # Optional additional labels to add to the cainjector's Service Account.
1246 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001247 # labels: {}
gio33d62932026-07-23 16:39:35 +04001248
1249 # Automount API credentials for a Service Account.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001250 automountServiceAccountToken: true
1251
gio33d62932026-07-23 16:39:35 +04001252 # Automounting API credentials for a particular pod.
1253 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001254 # automountServiceAccountToken: true
1255
gio33d62932026-07-23 16:39:35 +04001256 # Additional volumes to add to the cert-manager controller pod.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001257 volumes: []
gio33d62932026-07-23 16:39:35 +04001258
1259 # Additional volume mounts to add to the cert-manager controller container.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001260 volumeMounts: []
1261
gio33d62932026-07-23 16:39:35 +04001262 # enableServiceLinks indicates whether information about services should be
1263 # injected into the pod's environment variables, matching the syntax of Docker
1264 # links.
1265 enableServiceLinks: false
1266
1267# +docs:section=ACME Solver
1268
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001269acmesolver:
1270 image:
gio33d62932026-07-23 16:39:35 +04001271 # The container registry to pull the acmesolver image from.
1272 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001273 # registry: quay.io
gio33d62932026-07-23 16:39:35 +04001274
1275 # The container image for the cert-manager acmesolver.
1276 # +docs:property
1277 repository: quay.io/jetstack/cert-manager-acmesolver
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001278
1279 # Override the image tag to deploy by setting this variable.
gio33d62932026-07-23 16:39:35 +04001280 # If no value is set, the chart's appVersion is used.
1281 # +docs:property
1282 # tag: vX.Y.Z
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001283
gio33d62932026-07-23 16:39:35 +04001284 # Setting a digest will override any tag.
1285 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001286 # digest: sha256:0e072dddd1f7f8fc8909a2ca6f65e76c5f0d2fcfb8be47935ae3457e8bbceb20
1287
gio33d62932026-07-23 16:39:35 +04001288 # Kubernetes imagePullPolicy on Deployment.
1289 pullPolicy: IfNotPresent
1290
1291# +docs:section=Startup API Check
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001292# This startupapicheck is a Helm post-install hook that waits for the webhook
1293# endpoints to become available.
gio33d62932026-07-23 16:39:35 +04001294# The check is implemented using a Kubernetes Job - if you are injecting mesh
1295# sidecar proxies into cert-manager pods, ensure that they
1296# are not injected into this Job's pod. Otherwise, the installation may time out
1297# owing to the Job never being completed because the sidecar proxy does not exit.
1298# For more information, see [this note](https://github.com/cert-manager/cert-manager/pull/4414).
1299
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001300startupapicheck:
gio33d62932026-07-23 16:39:35 +04001301 # Enables the startup api check.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001302 enabled: true
1303
gio33d62932026-07-23 16:39:35 +04001304 # Pod Security Context to be set on the startupapicheck component Pod.
1305 # For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
1306 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001307 securityContext:
1308 runAsNonRoot: true
1309 seccompProfile:
1310 type: RuntimeDefault
1311
gio33d62932026-07-23 16:39:35 +04001312 # Container Security Context to be set on the controller component container.
1313 # For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).
1314 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001315 containerSecurityContext:
1316 allowPrivilegeEscalation: false
1317 capabilities:
1318 drop:
1319 - ALL
gio33d62932026-07-23 16:39:35 +04001320 readOnlyRootFilesystem: true
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001321
gio33d62932026-07-23 16:39:35 +04001322 # Timeout for 'kubectl check api' command.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001323 timeout: 1m
1324
1325 # Job backoffLimit
1326 backoffLimit: 4
1327
gio33d62932026-07-23 16:39:35 +04001328 # Optional additional annotations to add to the startupapicheck Job.
1329 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001330 jobAnnotations:
1331 helm.sh/hook: post-install
1332 helm.sh/hook-weight: "1"
1333 helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
1334
gio33d62932026-07-23 16:39:35 +04001335 # Optional additional annotations to add to the startupapicheck Pods.
1336 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001337 # podAnnotations: {}
1338
1339 # Additional command line flags to pass to startupapicheck binary.
gio33d62932026-07-23 16:39:35 +04001340 # To see all available flags run `docker run quay.io/jetstack/cert-manager-startupapicheck:<version> --help`.
1341 #
1342 # Verbose logging is enabled by default so that if startupapicheck fails, you
1343 # can know what exactly caused the failure. Verbose logs include details of
1344 # the webhook URL, IP address and TCP connect errors for example.
1345 # +docs:property
1346 extraArgs:
1347 - -v
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001348
gio33d62932026-07-23 16:39:35 +04001349 # Additional environment variables to pass to cert-manager startupapicheck binary.
1350 # For example:
1351 # extraEnv:
1352 # - name: SOME_VAR
1353 # value: 'some value'
1354 extraEnv: []
1355
1356 # Resources to provide to the cert-manager controller pod.
1357 #
1358 # For example:
1359 # requests:
1360 # cpu: 10m
1361 # memory: 32Mi
1362 #
1363 # For more information, see [Resource Management for Pods and Containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001364 resources: {}
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001365
gio33d62932026-07-23 16:39:35 +04001366
1367 # The nodeSelector on Pods tells Kubernetes to schedule Pods on the nodes with
1368 # matching labels.
1369 # For more information, see [Assigning Pods to Nodes](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).
1370 #
1371 # This default ensures that Pods are only scheduled to Linux nodes.
1372 # It prevents Pods being scheduled to Windows nodes in a mixed OS cluster.
1373 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001374 nodeSelector:
1375 kubernetes.io/os: linux
1376
gio33d62932026-07-23 16:39:35 +04001377 # A Kubernetes Affinity, if required. For more information, see [Affinity v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#affinity-v1-core).
1378 # For example:
1379 # affinity:
1380 # nodeAffinity:
1381 # requiredDuringSchedulingIgnoredDuringExecution:
1382 # nodeSelectorTerms:
1383 # - matchExpressions:
1384 # - key: foo.bar.com/role
1385 # operator: In
1386 # values:
1387 # - master
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001388 affinity: {}
1389
gio33d62932026-07-23 16:39:35 +04001390 # A list of Kubernetes Tolerations, if required. For more information, see [Toleration v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#toleration-v1-core).
1391 #
1392 # For example:
1393 # tolerations:
1394 # - key: foo.bar.com/role
1395 # operator: Equal
1396 # value: master
1397 # effect: NoSchedule
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001398 tolerations: []
1399
gio33d62932026-07-23 16:39:35 +04001400 # Optional additional labels to add to the startupapicheck Pods.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001401 podLabels: {}
1402
1403 image:
gio33d62932026-07-23 16:39:35 +04001404 # The container registry to pull the startupapicheck image from.
1405 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001406 # registry: quay.io
gio33d62932026-07-23 16:39:35 +04001407
1408 # The container image for the cert-manager startupapicheck.
1409 # +docs:property
1410 repository: quay.io/jetstack/cert-manager-startupapicheck
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001411
1412 # Override the image tag to deploy by setting this variable.
gio33d62932026-07-23 16:39:35 +04001413 # If no value is set, the chart's appVersion is used.
1414 # +docs:property
1415 # tag: vX.Y.Z
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001416
gio33d62932026-07-23 16:39:35 +04001417 # Setting a digest will override any tag.
1418 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001419 # digest: sha256:0e072dddd1f7f8fc8909a2ca6f65e76c5f0d2fcfb8be47935ae3457e8bbceb20
1420
gio33d62932026-07-23 16:39:35 +04001421 # Kubernetes imagePullPolicy on Deployment.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001422 pullPolicy: IfNotPresent
1423
1424 rbac:
gio33d62932026-07-23 16:39:35 +04001425 # annotations for the startup API Check job RBAC and PSP resources.
1426 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001427 annotations:
1428 helm.sh/hook: post-install
1429 helm.sh/hook-weight: "-5"
1430 helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
1431
gio33d62932026-07-23 16:39:35 +04001432 # Automounting API credentials for a particular pod.
1433 # +docs:property
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001434 # automountServiceAccountToken: true
1435
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001436 serviceAccount:
gio33d62932026-07-23 16:39:35 +04001437 # Specifies whether a service account should be created.
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001438 create: true
1439
1440 # The name of the service account to use.
gio33d62932026-07-23 16:39:35 +04001441 # If not set and create is true, a name is generated using the fullname template.
1442 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001443 # name: ""
1444
gio33d62932026-07-23 16:39:35 +04001445 # Optional additional annotations to add to the Job's Service Account.
1446 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001447 annotations:
1448 helm.sh/hook: post-install
1449 helm.sh/hook-weight: "-5"
1450 helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
1451
1452 # Automount API credentials for a Service Account.
gio33d62932026-07-23 16:39:35 +04001453 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001454 automountServiceAccountToken: true
1455
gio33d62932026-07-23 16:39:35 +04001456 # Optional additional labels to add to the startupapicheck's Service Account.
1457 # +docs:property
Giorgi Lekveishvilid1234c12023-06-19 10:37:06 +04001458 # labels: {}
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001459
gio33d62932026-07-23 16:39:35 +04001460 # Additional volumes to add to the cert-manager controller pod.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001461 volumes: []
gio33d62932026-07-23 16:39:35 +04001462
1463 # Additional volume mounts to add to the cert-manager controller container.
Giorgi Lekveishvili0048a782023-06-20 18:32:21 +04001464 volumeMounts: []
gio33d62932026-07-23 16:39:35 +04001465
1466 # enableServiceLinks indicates whether information about services should be
1467 # injected into pod's environment variables, matching the syntax of Docker
1468 # links.
1469 enableServiceLinks: false
1470
1471# Create dynamic manifests via values.
1472#
1473# For example:
1474# extraObjects:
1475# - |
1476# apiVersion: v1
1477# kind: ConfigMap
1478# metadata:
1479# name: '{{ template "cert-manager.fullname" . }}-extra-configmap'
1480extraObjects: []
1481
1482# Field used by our release pipeline to produce the static manifests.
1483# The field defaults to "helm" but is set to "static" when we render
1484# the static YAML manifests.
1485# +docs:hidden
1486creator: "helm"
1487
1488# Field that can be used as a condition when cert-manager is a dependency.
1489# This definition is only here as a placeholder such that it is included in
1490# the json schema.
1491# See https://helm.sh/docs/chart_best_practices/dependencies/#conditions-and-tags
1492# for more info.
1493# +docs:hidden
1494enabled: true