values.yaml 22 KB

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