values.yaml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  1. ---
  2. global:
  3. nodeSelector: {}
  4. tolerations: []
  5. topologySpreadConstraints: []
  6. # - maxSkew: 1
  7. # topologyKey: topology.kubernetes.io/zone
  8. # whenUnsatisfiable: ScheduleAnyway
  9. # matchLabelKeys:
  10. # - pod-template-hash
  11. # - maxSkew: 1
  12. # topologyKey: kubernetes.io/hostname
  13. # whenUnsatisfiable: DoNotSchedule
  14. # matchLabelKeys:
  15. # - pod-template-hash
  16. affinity: {}
  17. # -- Global hostAliases to be applied to all deployments
  18. hostAliases: []
  19. # -- Global pod labels to be applied to all deployments
  20. podLabels: {}
  21. # -- Global pod annotations to be applied to all deployments
  22. podAnnotations: {}
  23. # -- Global imagePullSecrets to be applied to all deployments
  24. imagePullSecrets: []
  25. # -- Global image repository to be applied to all deployments
  26. repository: ""
  27. compatibility:
  28. openshift:
  29. # -- Manages the securityContext properties to make them compatible with OpenShift.
  30. # Possible values:
  31. # auto - Apply configurations if it is detected that OpenShift is the target platform.
  32. # force - Always apply configurations.
  33. # disabled - No modification applied.
  34. adaptSecurityContext: auto
  35. replicaCount: 1
  36. bitwarden-sdk-server:
  37. enabled: false
  38. namespaceOverride: ""
  39. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  40. revisionHistoryLimit: 10
  41. image:
  42. repository: ghcr.io/external-secrets/external-secrets
  43. pullPolicy: IfNotPresent
  44. # -- The image tag to use. The default is the chart appVersion.
  45. tag: ""
  46. # -- The flavour of tag you want to use
  47. # There are different image flavours available, like distroless and ubi.
  48. # Please see GitHub release notes for image tags for these flavors.
  49. # By default, the distroless image is used.
  50. flavour: ""
  51. # -- If set, install and upgrade CRDs through helm chart.
  52. installCRDs: true
  53. crds:
  54. # -- If true, create CRDs for Cluster External Secret. If set to false you must also set processClusterExternalSecret: false.
  55. createClusterExternalSecret: true
  56. # -- If true, create CRDs for Cluster Secret Store. If set to false you must also set processClusterStore: false.
  57. createClusterSecretStore: true
  58. # -- If true, create CRDs for Secret Store. If set to false you must also set processSecretStore: false.
  59. createSecretStore: true
  60. # -- If true, create CRDs for Cluster Generator. If set to false you must also set processClusterGenerator: false.
  61. createClusterGenerator: true
  62. # -- If true, create CRDs for Cluster Push Secret. If set to false you must also set processClusterPushSecret: false.
  63. createClusterPushSecret: true
  64. # -- If true, create CRDs for Push Secret. If set to false you must also set processPushSecret: false.
  65. createPushSecret: true
  66. annotations: {}
  67. conversion:
  68. # -- Conversion is disabled by default as we stopped supporting v1alpha1.
  69. enabled: false
  70. # -- If true, enable v1beta1 API version serving for ExternalSecret, ClusterExternalSecret, SecretStore, and ClusterSecretStore CRDs.
  71. # v1beta1 is deprecated. Only enable this for backward compatibility if you have existing v1beta1 resources.
  72. # Warning: This flag will be removed on 2026.05.01.
  73. unsafeServeV1Beta1: false
  74. imagePullSecrets: []
  75. nameOverride: ""
  76. fullnameOverride: ""
  77. namespaceOverride: ""
  78. # -- Additional labels added to all helm chart resources.
  79. commonLabels: {}
  80. # -- If true, external-secrets will perform leader election between instances to ensure no more
  81. # than one instance of external-secrets operates at a time.
  82. leaderElect: false
  83. # -- ID of the lease object used for leader election.
  84. # Leave empty to use the default ('external-secrets-controller').
  85. # Set to a unique value when running multiple independent ESO deployments in the same namespace.
  86. # @default -- "external-secrets-controller"
  87. leaderElectionID: ""
  88. # -- If set external secrets will filter matching
  89. # Secret Stores with the appropriate controller values.
  90. controllerClass: ""
  91. # -- If true external secrets will use recommended kubernetes
  92. # annotations as prometheus metric labels.
  93. extendedMetricLabels: false
  94. # -- If set external secrets are only reconciled in the
  95. # provided namespace
  96. scopedNamespace: ""
  97. # -- If true, create scoped RBAC roles and implicitly disable cluster-scoped
  98. # controllers. Scoped to scopedNamespace if set, otherwise to .Release.Namespace.
  99. scopedRBAC: false
  100. # -- If true the OpenShift finalizer permissions will be added to RBAC
  101. openshiftFinalizers: true
  102. # -- If true the system:auth-delegator ClusterRole will be added to RBAC
  103. systemAuthDelegator: false
  104. # -- if true, the operator will process cluster external secret. Else, it will ignore them.
  105. # When enabled, this adds update/patch permissions on namespaces to handle finalizers for proper
  106. # cleanup during namespace deletion, preventing race conditions with ExternalSecrets.
  107. processClusterExternalSecret: true
  108. # -- if true, the operator will process cluster push secret. Else, it will ignore them.
  109. processClusterPushSecret: true
  110. # -- if true, the operator will process cluster store. Else, it will ignore them.
  111. processClusterStore: true
  112. # -- if true, the operator will process secret store. Else, it will ignore them.
  113. processSecretStore: true
  114. # -- if true, the operator will process cluster generator. Else, it will ignore them.
  115. processClusterGenerator: true
  116. # -- if true, the operator will process push secret. Else, it will ignore them.
  117. processPushSecret: true
  118. # -- Enable support for generic targets (ConfigMaps, Custom Resources).
  119. # Warning: Using generic target. Make sure access policies and encryption are properly configured.
  120. # When enabled, this grants the controller permissions to create/update/delete
  121. # ConfigMaps and optionally other resource types specified in generic.resources.
  122. genericTargets:
  123. # -- Enable generic target support
  124. enabled: false
  125. # -- List of additional resource types to grant permissions for.
  126. # Each entry should specify apiGroup, resources, and verbs.
  127. # Example:
  128. # resources:
  129. # - apiGroup: "argoproj.io"
  130. # resources: ["applications"]
  131. # verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
  132. resources: []
  133. # -- Specifies whether an external secret operator deployment be created.
  134. createOperator: true
  135. # -- if true, HTTP2 will be enabled for the services created by all controllers, curently metrics and webhook.
  136. enableHTTP2: false
  137. # -- Vault token cache configuration
  138. vault:
  139. # -- Enable Vault token cache. External secrets will reuse the Vault token without creating a new one on each request.
  140. enableTokenCache: false
  141. # -- Maximum size of Vault token cache. Only used if enableTokenCache is true.
  142. tokenCacheSize: 262144
  143. # -- Specifies the number of concurrent ExternalSecret Reconciles external-secret executes at
  144. # a time.
  145. concurrent: 1
  146. # -- Specifies Log Params to the External Secrets Operator
  147. log:
  148. level: info
  149. timeEncoding: epoch
  150. service:
  151. # -- Set the ip family policy to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services)
  152. ipFamilyPolicy: ""
  153. # -- Sets the families that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6.
  154. ipFamilies: []
  155. serviceAccount:
  156. # -- Specifies whether a service account should be created.
  157. create: true
  158. # -- Automounts the service account token in all containers of the pod
  159. automount: true
  160. # -- Annotations to add to the service account.
  161. annotations: {}
  162. # -- Extra Labels to add to the service account.
  163. extraLabels: {}
  164. # -- The name of the service account to use.
  165. # If not set and create is true, a name is generated using the fullname template.
  166. name: ""
  167. rbac:
  168. # -- Specifies whether role and rolebinding resources should be created.
  169. create: true
  170. # -- Specifies whether the serviceaccounts/token create permission is included in the controller RBAC.
  171. # When set to false, users must create per-ServiceAccount Role/RoleBinding with resourceNames constraint
  172. # to grant ESO token creation for specific ServiceAccounts referenced in SecretStore specs.
  173. serviceAccountTokenCreate: true
  174. servicebindings:
  175. # -- Specifies whether a clusterrole to give servicebindings read access should be created.
  176. create: true
  177. # -- Specifies whether permissions are aggregated to the view ClusterRole
  178. aggregateToView: true
  179. # -- Specifies whether permissions are aggregated to the edit ClusterRole
  180. aggregateToEdit: true
  181. ## -- Extra environment variables to add to container.
  182. extraEnv: []
  183. ## -- Map of extra arguments to pass to container.
  184. extraArgs: {}
  185. ## -- Extra volumes to pass to pod.
  186. extraVolumes: []
  187. ## -- Extra Kubernetes objects to deploy with the helm chart
  188. extraObjects: []
  189. ## -- Extra volumes to mount to the container.
  190. extraVolumeMounts: []
  191. ## -- Extra init containers to add to the pod.
  192. extraInitContainers: []
  193. ## -- Extra containers to add to the pod.
  194. extraContainers: []
  195. # -- Annotations to add to Deployment
  196. deploymentAnnotations: {}
  197. # -- Set deployment strategy
  198. strategy: {}
  199. # -- Annotations to add to Pod
  200. podAnnotations: {}
  201. podLabels: {}
  202. podSecurityContext:
  203. enabled: true
  204. # fsGroup: 2000
  205. securityContext:
  206. allowPrivilegeEscalation: false
  207. capabilities:
  208. drop:
  209. - ALL
  210. enabled: true
  211. readOnlyRootFilesystem: true
  212. runAsNonRoot: true
  213. runAsUser: 1000
  214. seccompProfile:
  215. type: RuntimeDefault
  216. resources: {}
  217. # requests:
  218. # cpu: 10m
  219. # memory: 32Mi
  220. serviceMonitor:
  221. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  222. enabled: false
  223. # -- How should we react to missing CRD "`monitoring.coreos.com/v1/ServiceMonitor`"
  224. #
  225. # Possible values:
  226. # - `skipIfMissing`: Only render ServiceMonitor resources if CRD is present, skip if missing.
  227. # - `failIfMissing`: Fail Helm install if CRD is not present.
  228. # - `alwaysRender` : Always render ServiceMonitor resources, do not check for CRD.
  229. # @schema
  230. # enum:
  231. # - skipIfMissing
  232. # - failIfMissing
  233. # - alwaysRender
  234. # @schema
  235. renderMode: skipIfMissing # @schema enum: [skipIfMissing, failIfMissing, alwaysRender]
  236. # -- namespace where you want to install ServiceMonitors
  237. namespace: ""
  238. # -- Additional labels
  239. additionalLabels: {}
  240. # -- Interval to scrape metrics
  241. interval: 30s
  242. # -- Timeout if metrics can't be retrieved in given time interval
  243. scrapeTimeout: 25s
  244. # -- Let prometheus add an exported_ prefix to conflicting labels
  245. honorLabels: false
  246. # -- Metric relabel configs to apply to samples before ingestion. [Metric Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs)
  247. metricRelabelings: []
  248. # - action: replace
  249. # regex: (.*)
  250. # replacement: $1
  251. # sourceLabels:
  252. # - exported_namespace
  253. # targetLabel: namespace
  254. # -- Relabel configs to apply to samples before ingestion. [Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config)
  255. relabelings: []
  256. # - sourceLabels: [__meta_kubernetes_pod_node_name]
  257. # separator: ;
  258. # regex: ^(.*)$
  259. # targetLabel: nodename
  260. # replacement: $1
  261. # action: replace
  262. metrics:
  263. listen:
  264. port: 8080
  265. auth:
  266. # -- Enable Kubernetes RBAC-based authentication for metrics endpoint. Requires metrics.listen.secure to be true. Default value is false.
  267. enabled: false
  268. secure:
  269. enabled: false
  270. # -- if those are not set or invalid, self-signed certs will be generated
  271. # -- TLS cert directory path
  272. certDir: /etc/tls
  273. # -- TLS cert file path
  274. certFile: /etc/tls/tls.crt
  275. # -- TLS key file path
  276. keyFile: /etc/tls/tls.key
  277. service:
  278. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  279. enabled: false
  280. # -- Metrics service port to scrape
  281. port: 8080
  282. # -- Additional service annotations
  283. annotations: {}
  284. grafanaDashboard:
  285. # -- If true creates a Grafana dashboard.
  286. enabled: false
  287. # -- Label that ConfigMaps should have to be loaded as dashboards.
  288. sidecarLabel: "grafana_dashboard"
  289. # -- Label value that ConfigMaps should have to be loaded as dashboards.
  290. sidecarLabelValue: "1"
  291. # -- Annotations that ConfigMaps can have to get configured in Grafana,
  292. # See: sidecar.dashboards.folderAnnotation for specifying the dashboard folder.
  293. # https://github.com/grafana/helm-charts/tree/main/charts/grafana
  294. annotations: {}
  295. # -- Extra labels to add to the Grafana dashboard ConfigMap.
  296. extraLabels: {}
  297. livenessProbe:
  298. # -- Enabled determines if the liveness probe should be used or not. By default it's disabled.
  299. enabled: false
  300. # -- The body of the liveness probe settings.
  301. spec:
  302. # -- Bind address for the health server used by both liveness and readiness probes (--live-addr flag).
  303. address: ""
  304. # -- Port for the health server used by both liveness and readiness probes (--live-addr flag).
  305. port: 8082
  306. # -- Specify the maximum amount of time to wait for a probe to respond before considering it fails.
  307. timeoutSeconds: 5
  308. # -- Number of consecutive probe failures that should occur before considering the probe as failed.
  309. failureThreshold: 5
  310. # -- Period in seconds for K8s to start performing probes.
  311. periodSeconds: 10
  312. # -- Number of successful probes to mark probe successful.
  313. successThreshold: 1
  314. # -- Delay in seconds for the container to start before performing the initial probe.
  315. initialDelaySeconds: 10
  316. # -- Handler for liveness probe.
  317. httpGet:
  318. # -- Set this value to 'live' (for named port) or an an integer for liveness probes.
  319. # @schema type: [string, integer]
  320. port: live
  321. # -- Path for liveness probe.
  322. path: /healthz
  323. readinessProbe:
  324. # -- Determines whether the readiness probe is enabled. Disabled by default. Enabling this will auto-start the health server (--live-addr) even if livenessProbe is disabled. Health server address/port are configured via livenessProbe.spec.address and livenessProbe.spec.port.
  325. enabled: false
  326. # -- The body of the readiness probe settings (standard Kubernetes probe spec).
  327. spec:
  328. # -- Specify the maximum amount of time to wait for a probe to respond before considering it fails.
  329. timeoutSeconds: 5
  330. # -- Number of consecutive probe failures that should occur before considering the probe as failed.
  331. failureThreshold: 3
  332. # -- Period in seconds for K8s to start performing probes.
  333. periodSeconds: 10
  334. # -- Number of successful probes to mark probe successful.
  335. successThreshold: 1
  336. # -- Delay in seconds for the container to start before performing the initial probe.
  337. initialDelaySeconds: 10
  338. # -- Handler for readiness probe.
  339. httpGet:
  340. # -- Set this value to 'live' (for named port) or an integer for readiness probes.
  341. # @schema type: [string, integer]
  342. port: live
  343. # -- Path for readiness probe.
  344. path: /readyz
  345. nodeSelector: {}
  346. tolerations: []
  347. topologySpreadConstraints: []
  348. affinity: {}
  349. # -- Pod priority class name.
  350. priorityClassName: ""
  351. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  352. podDisruptionBudget:
  353. enabled: false
  354. minAvailable: 1 # @schema type:[integer, string]
  355. nameOverride: ""
  356. # maxUnavailable: "50%"
  357. # -- Run the controller on the host network
  358. hostNetwork: false
  359. # -- (bool) Specifies if controller pod should use hostUsers or not. If hostNetwork is true, hostUsers should be too. Only available in Kubernetes ≥ 1.33.
  360. # @schema type: [boolean, null]
  361. hostUsers:
  362. webhook:
  363. # -- Annotations to place on validating webhook configuration.
  364. annotations: {}
  365. # -- Specifies whether a webhook deployment be created. If set to false, crds.conversion.enabled should also be set to false otherwise the kubeapi will be hammered because the conversion is looking for a webhook endpoint.
  366. create: true
  367. # -- Specifies the time to check if the cert is valid
  368. certCheckInterval: "5m"
  369. # -- Specifies the lookaheadInterval for certificate validity
  370. lookaheadInterval: ""
  371. replicaCount: 1
  372. # -- Specifies Log Params to the Webhook
  373. log:
  374. level: info
  375. timeEncoding: epoch
  376. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  377. revisionHistoryLimit: 10
  378. certDir: /tmp/certs
  379. # -- Specifies whether validating webhooks should be created with failurePolicy: Fail or Ignore
  380. failurePolicy: Fail
  381. # -- Specifies if webhook pod should use hostNetwork or not.
  382. hostNetwork: false
  383. # -- (bool) Specifies if webhook pod should use hostUsers or not. If hostNetwork is true, hostUsers should be too. Only available in Kubernetes ≥ 1.33.
  384. # @schema type: [boolean, null]
  385. hostUsers:
  386. image:
  387. repository: ghcr.io/external-secrets/external-secrets
  388. pullPolicy: IfNotPresent
  389. # -- The image tag to use. The default is the chart appVersion.
  390. tag: ""
  391. # -- The flavour of tag you want to use
  392. flavour: ""
  393. imagePullSecrets: []
  394. # -- The port the webhook will listen to
  395. port: 10250
  396. serviceAccount:
  397. # -- Specifies whether a service account should be created.
  398. create: true
  399. # -- Automounts the service account token in all containers of the pod
  400. automount: true
  401. # -- Annotations to add to the service account.
  402. annotations: {}
  403. # -- Extra Labels to add to the service account.
  404. extraLabels: {}
  405. # -- The name of the service account to use.
  406. # If not set and create is true, a name is generated using the fullname template.
  407. name: ""
  408. nodeSelector: {}
  409. # -- Specifies `hostAliases` to webhook deployment
  410. hostAliases: []
  411. certManager:
  412. # -- Enabling cert-manager support will disable the built in secret and
  413. # switch to using cert-manager (installed separately) to automatically issue
  414. # and renew the webhook certificate. This chart does not install
  415. # cert-manager for you, See https://cert-manager.io/docs/
  416. enabled: false
  417. # -- Automatically add the cert-manager.io/inject-ca-from annotation to the
  418. # webhooks and CRDs. As long as you have the cert-manager CA Injector
  419. # enabled, this will automatically setup your webhook's CA to the one used
  420. # by cert-manager. See https://cert-manager.io/docs/concepts/ca-injector
  421. addInjectorAnnotations: true
  422. cert:
  423. # -- Create a certificate resource within this chart. See
  424. # https://cert-manager.io/docs/usage/certificate/
  425. create: true
  426. # -- For the Certificate created by this chart, setup the issuer. See
  427. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.IssuerSpec
  428. issuerRef:
  429. group: cert-manager.io
  430. kind: "Issuer"
  431. name: "my-issuer"
  432. # -- Set the requested duration (i.e. lifetime) of the Certificate. See
  433. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec
  434. # One year by default.
  435. duration: "8760h0m0s"
  436. # -- Set the revisionHistoryLimit on the Certificate. See
  437. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec
  438. # Defaults to 0 (ignored).
  439. revisionHistoryLimit: 0
  440. # -- How long before the currently issued certificate’s expiry
  441. # cert-manager should renew the certificate. See
  442. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec
  443. # Note that renewBefore should be greater than .webhook.lookaheadInterval
  444. # since the webhook will check this far in advance that the certificate is
  445. # valid.
  446. renewBefore: ""
  447. # -- Specific settings on the privateKey and its generation
  448. privateKey: {}
  449. # rotationPolicy: Always
  450. # algorithm: RSA
  451. # size: 2048
  452. # -- Specific settings on the signatureAlgorithm used on the cert.
  453. # signatureAlgorithm is only valid for cert-manager v1.18.0+
  454. signatureAlgorithm: ""
  455. # -- Add extra annotations to the Certificate resource.
  456. annotations: {}
  457. tolerations: []
  458. topologySpreadConstraints: []
  459. affinity: {}
  460. # -- Set deployment strategy
  461. strategy: {}
  462. # -- Pod priority class name.
  463. priorityClassName: ""
  464. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  465. podDisruptionBudget:
  466. enabled: false
  467. minAvailable: 1 # @schema type:[integer, string]
  468. nameOverride: ""
  469. # maxUnavailable: "50%"
  470. metrics:
  471. listen:
  472. port: 8080
  473. auth:
  474. # -- Enable Kubernetes RBAC-based authentication for webhook's metrics endpoint. Requires webhook.metrics.listen.secure to be true. Default value is false.
  475. enabled: false
  476. secure:
  477. enabled: false
  478. # -- if those are not set or invalid, self-signed certs will be generated
  479. # -- TLS cert directory path
  480. certDir: /etc/tls
  481. # -- TLS cert file path
  482. certFile: /etc/tls/tls.crt
  483. # -- TLS key file path
  484. keyFile: /etc/tls/tls.key
  485. service:
  486. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  487. enabled: false
  488. # -- Metrics service port to scrape
  489. port: 8080
  490. # -- Additional service annotations
  491. annotations: {}
  492. livenessProbe:
  493. enabled: false
  494. # -- Set this value to 'live' (for named port) or an integer for liveness probes.
  495. # @schema type: [string, integer]
  496. port: 8081
  497. timeoutSeconds: 5
  498. failureThreshold: 5
  499. periodSeconds: 10
  500. successThreshold: 1
  501. initialDelaySeconds: 10
  502. readinessProbe:
  503. enabled: true
  504. address: ""
  505. # -- Set this value to 'ready' (for named port) or an integer for readiness probes.
  506. # @schema type: [string, integer]
  507. port: 8081
  508. timeoutSeconds: 5
  509. failureThreshold: 3
  510. periodSeconds: 5
  511. successThreshold: 1
  512. initialDelaySeconds: 20
  513. ## -- Extra environment variables to add to container.
  514. extraEnv: []
  515. ## -- Map of extra arguments to pass to container.
  516. extraArgs: {}
  517. ## -- Extra init containers to add to the pod.
  518. extraInitContainers: []
  519. ## -- Extra volumes to pass to pod.
  520. extraVolumes: []
  521. ## -- Extra volumes to mount to the container.
  522. extraVolumeMounts: []
  523. # -- Annotations to add to Secret
  524. secretAnnotations: {}
  525. # -- Annotations to add to Deployment
  526. deploymentAnnotations: {}
  527. # -- Annotations to add to Pod
  528. podAnnotations: {}
  529. podLabels: {}
  530. podSecurityContext:
  531. enabled: true
  532. # fsGroup: 2000
  533. securityContext:
  534. allowPrivilegeEscalation: false
  535. capabilities:
  536. drop:
  537. - ALL
  538. enabled: true
  539. readOnlyRootFilesystem: true
  540. runAsNonRoot: true
  541. runAsUser: 1000
  542. seccompProfile:
  543. type: RuntimeDefault
  544. resources: {}
  545. # requests:
  546. # cpu: 10m
  547. # memory: 32Mi
  548. # -- Manage the service through which the webhook is reached.
  549. service:
  550. # -- Whether the service object should be enabled or not (it is expected to exist).
  551. enabled: true
  552. # -- Custom annotations for the webhook service.
  553. annotations: {}
  554. # -- Custom labels for the webhook service.
  555. labels: {}
  556. # -- The service type of the webhook service.
  557. type: ClusterIP
  558. # -- If the webhook service type is LoadBalancer, you can assign a specific load balancer IP here.
  559. # Check the documentation of your load balancer provider to see if/how this should be used.
  560. loadBalancerIP: ""
  561. certController:
  562. # -- Specifies whether a certificate controller deployment be created.
  563. create: true
  564. requeueInterval: "5m"
  565. replicaCount: 1
  566. # -- Specifies Log Params to the Certificate Controller
  567. log:
  568. level: info
  569. timeEncoding: epoch
  570. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  571. revisionHistoryLimit: 10
  572. image:
  573. repository: ghcr.io/external-secrets/external-secrets
  574. pullPolicy: IfNotPresent
  575. tag: ""
  576. flavour: ""
  577. imagePullSecrets: []
  578. rbac:
  579. # -- Specifies whether role and rolebinding resources should be created.
  580. create: true
  581. serviceAccount:
  582. # -- Specifies whether a service account should be created.
  583. create: true
  584. # -- Automounts the service account token in all containers of the pod
  585. automount: true
  586. # -- Annotations to add to the service account.
  587. annotations: {}
  588. # -- Extra Labels to add to the service account.
  589. extraLabels: {}
  590. # -- The name of the service account to use.
  591. # If not set and create is true, a name is generated using the fullname template.
  592. name: ""
  593. nodeSelector: {}
  594. # -- Specifies `hostAliases` to cert-controller deployment
  595. hostAliases: []
  596. tolerations: []
  597. topologySpreadConstraints: []
  598. affinity: {}
  599. # -- Set deployment strategy
  600. strategy: {}
  601. # -- Run the certController on the host network
  602. hostNetwork: false
  603. # -- (bool) Specifies if certController pod should use hostUsers or not. If hostNetwork is true, hostUsers should be too. Only available in Kubernetes ≥ 1.33.
  604. # @schema type: [boolean, null]
  605. hostUsers:
  606. # -- Pod priority class name.
  607. priorityClassName: ""
  608. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  609. podDisruptionBudget:
  610. enabled: false
  611. minAvailable: 1 # @schema type:[integer, string]
  612. nameOverride: ""
  613. # maxUnavailable: "50%"
  614. metrics:
  615. listen:
  616. port: 8080
  617. auth:
  618. # -- Enable Kubernetes RBAC-based authentication for certController's metrics endpoint. Requires certController.metrics.listen.secure to be true. Default value is false.
  619. enabled: false
  620. secure:
  621. enabled: false
  622. # -- if those are not set or invalid, self-signed certs will be generated
  623. # -- TLS cert directory path
  624. certDir: /etc/tls
  625. # -- TLS cert file path
  626. certFile: /etc/tls/tls.crt
  627. # -- TLS key file path
  628. keyFile: /etc/tls/tls.key
  629. service:
  630. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  631. enabled: false
  632. # -- Metrics service port to scrape
  633. port: 8080
  634. # -- Additional service annotations
  635. annotations: {}
  636. livenessProbe:
  637. enabled: false
  638. # -- Set this value to 'live' (for named port) or an integer for liveness probes.
  639. # @schema type: [string, integer]
  640. port: 8081
  641. timeoutSeconds: 5
  642. failureThreshold: 5
  643. periodSeconds: 10
  644. successThreshold: 1
  645. initialDelaySeconds: 10
  646. readinessProbe:
  647. enabled: true
  648. address: ""
  649. # -- Set this value to 'ready' (for named port) or an integer for readiness probes.
  650. # @schema type: [string, integer]
  651. port: 8081
  652. timeoutSeconds: 5
  653. failureThreshold: 3
  654. periodSeconds: 5
  655. successThreshold: 1
  656. initialDelaySeconds: 20
  657. startupProbe:
  658. # -- Enabled determines if the startup probe should be used or not. By default it's enabled
  659. enabled: false
  660. # -- whether to use the readiness probe port for startup probe.
  661. useReadinessProbePort: true
  662. # -- Port for startup probe.
  663. port: ""
  664. ## -- Extra environment variables to add to container.
  665. extraEnv: []
  666. ## -- Map of extra arguments to pass to container.
  667. extraArgs: {}
  668. ## -- Extra init containers to add to the pod.
  669. extraInitContainers: []
  670. ## -- Extra volumes to pass to pod.
  671. extraVolumes: []
  672. ## -- Extra volumes to mount to the container.
  673. extraVolumeMounts: []
  674. # -- Annotations to add to Deployment
  675. deploymentAnnotations: {}
  676. # -- Annotations to add to Pod
  677. podAnnotations: {}
  678. podLabels: {}
  679. podSecurityContext:
  680. enabled: true
  681. # fsGroup: 2000
  682. securityContext:
  683. allowPrivilegeEscalation: false
  684. capabilities:
  685. drop:
  686. - ALL
  687. enabled: true
  688. readOnlyRootFilesystem: true
  689. runAsNonRoot: true
  690. runAsUser: 1000
  691. seccompProfile:
  692. type: RuntimeDefault
  693. resources: {}
  694. # requests:
  695. # cpu: 10m
  696. # memory: 32Mi
  697. # -- Specifies `dnsPolicy` to deployment
  698. dnsPolicy: ClusterFirst
  699. # -- Specifies `dnsOptions` to deployment
  700. dnsConfig: {}
  701. # -- Specifies `hostAliases` to deployment
  702. hostAliases: []
  703. # -- Any extra pod spec on the deployment
  704. podSpecExtra: {}