values.yaml 16 KB

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