values.yaml 19 KB

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