values.yaml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  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. duration: ""
  221. # -- How long before the currently issued certificate’s expiry
  222. # cert-manager should renew the certificate. See
  223. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec
  224. # Note that renewBefore should be greater than .webhook.lookaheadInterval
  225. # since the webhook will check this far in advance that the certificate is
  226. # valid.
  227. renewBefore: ""
  228. # -- Add extra annotations to the Certificate resource.
  229. annotations: {}
  230. tolerations: []
  231. topologySpreadConstraints: []
  232. affinity: {}
  233. # -- Pod priority class name.
  234. priorityClassName: ""
  235. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  236. podDisruptionBudget:
  237. enabled: false
  238. minAvailable: 1
  239. # maxUnavailable: 1
  240. metrics:
  241. listen:
  242. port: 8080
  243. service:
  244. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  245. enabled: false
  246. # -- Metrics service port to scrape
  247. port: 8080
  248. # -- Additional service annotations
  249. annotations: {}
  250. readinessProbe:
  251. # -- Address for readiness probe
  252. address: ""
  253. # -- ReadinessProbe port for kubelet
  254. port: 8081
  255. ## -- Extra environment variables to add to container.
  256. extraEnv: []
  257. ## -- Map of extra arguments to pass to container.
  258. extraArgs: {}
  259. ## -- Extra volumes to pass to pod.
  260. extraVolumes: []
  261. ## -- Extra volumes to mount to the container.
  262. extraVolumeMounts: []
  263. # -- Annotations to add to Secret
  264. secretAnnotations: {}
  265. # -- Annotations to add to Deployment
  266. deploymentAnnotations: {}
  267. # -- Annotations to add to Pod
  268. podAnnotations: {}
  269. podLabels: {}
  270. podSecurityContext: {}
  271. # fsGroup: 2000
  272. securityContext:
  273. allowPrivilegeEscalation: false
  274. capabilities:
  275. drop:
  276. - ALL
  277. readOnlyRootFilesystem: true
  278. runAsNonRoot: true
  279. runAsUser: 1000
  280. seccompProfile:
  281. type: RuntimeDefault
  282. resources: {}
  283. # requests:
  284. # cpu: 10m
  285. # memory: 32Mi
  286. certController:
  287. # -- Specifies whether a certificate controller deployment be created.
  288. create: true
  289. requeueInterval: "5m"
  290. replicaCount: 1
  291. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  292. revisionHistoryLimit: 10
  293. image:
  294. repository: ghcr.io/external-secrets/external-secrets
  295. pullPolicy: IfNotPresent
  296. tag: ""
  297. imagePullSecrets: []
  298. nameOverride: ""
  299. fullnameOverride: ""
  300. rbac:
  301. # -- Specifies whether role and rolebinding resources should be created.
  302. create: true
  303. serviceAccount:
  304. # -- Specifies whether a service account should be created.
  305. create: true
  306. # -- Automounts the service account token in all containers of the pod
  307. automount: true
  308. # -- Annotations to add to the service account.
  309. annotations: {}
  310. # -- Extra Labels to add to the service account.
  311. extraLabels: {}
  312. # -- The name of the service account to use.
  313. # If not set and create is true, a name is generated using the fullname template.
  314. name: ""
  315. nodeSelector: {}
  316. tolerations: []
  317. topologySpreadConstraints: []
  318. affinity: {}
  319. # -- Run the certController on the host network
  320. hostNetwork: false
  321. # -- Pod priority class name.
  322. priorityClassName: ""
  323. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  324. podDisruptionBudget:
  325. enabled: false
  326. minAvailable: 1
  327. # maxUnavailable: 1
  328. metrics:
  329. listen:
  330. port: 8080
  331. service:
  332. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  333. enabled: false
  334. # -- Metrics service port to scrape
  335. port: 8080
  336. # -- Additional service annotations
  337. annotations: {}
  338. readinessProbe:
  339. # -- Address for readiness probe
  340. address: ""
  341. # -- ReadinessProbe port for kubelet
  342. port: 8081
  343. ## -- Extra environment variables to add to container.
  344. extraEnv: []
  345. ## -- Map of extra arguments to pass to container.
  346. extraArgs: {}
  347. ## -- Extra volumes to pass to pod.
  348. extraVolumes: []
  349. ## -- Extra volumes to mount to the container.
  350. extraVolumeMounts: []
  351. # -- Annotations to add to Deployment
  352. deploymentAnnotations: {}
  353. # -- Annotations to add to Pod
  354. podAnnotations: {}
  355. podLabels: {}
  356. podSecurityContext: {}
  357. # fsGroup: 2000
  358. securityContext:
  359. allowPrivilegeEscalation: false
  360. capabilities:
  361. drop:
  362. - ALL
  363. readOnlyRootFilesystem: true
  364. runAsNonRoot: true
  365. runAsUser: 1000
  366. seccompProfile:
  367. type: RuntimeDefault
  368. resources: {}
  369. # requests:
  370. # cpu: 10m
  371. # memory: 32Mi
  372. # -- Specifies `dnsOptions` to deployment
  373. dnsConfig: {}
  374. # -- Any extra pod spec on the deployment
  375. podSpecExtra: {}