values.yaml 14 KB

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