values.yaml 17 KB

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