values.yaml 13 KB

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