values.yaml 20 KB

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