values.yaml 14 KB

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