values.yaml 25 KB

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