values.yaml 28 KB

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