values.yaml 17 KB

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