values.yaml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  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. # -- If true, external-secrets will perform leader election between instances to ensure no more
  28. # than one instance of external-secrets operates at a time.
  29. leaderElect: false
  30. # -- If set external secrets will filter matching
  31. # Secret Stores with the appropriate controller values.
  32. controllerClass: ""
  33. # -- If true external secrets will use recommended kubernetes
  34. # annotations as prometheus metric labels.
  35. extendedMetricLabels: false
  36. # -- If set external secrets are only reconciled in the
  37. # provided namespace
  38. scopedNamespace: ""
  39. # -- Must be used with scopedNamespace. If true, create scoped RBAC roles under the scoped namespace
  40. # and implicitly disable cluster stores and cluster external secrets
  41. scopedRBAC: false
  42. # -- if true, the operator will process cluster external secret. Else, it will ignore them.
  43. processClusterExternalSecret: true
  44. # -- if true, the operator will process cluster store. Else, it will ignore them.
  45. processClusterStore: true
  46. # -- Specifies whether an external secret operator deployment be created.
  47. createOperator: true
  48. # -- Specifies the number of concurrent ExternalSecret Reconciles external-secret executes at
  49. # a time.
  50. concurrent: 1
  51. serviceAccount:
  52. # -- Specifies whether a service account should be created.
  53. create: true
  54. # -- Automounts the service account token in all containers of the pod
  55. automount: true
  56. # -- Annotations to add to the service account.
  57. annotations: {}
  58. # -- Extra Labels to add to the service account.
  59. extraLabels: {}
  60. # -- The name of the service account to use.
  61. # If not set and create is true, a name is generated using the fullname template.
  62. name: ""
  63. rbac:
  64. # -- Specifies whether role and rolebinding resources should be created.
  65. create: true
  66. ## -- Extra environment variables to add to container.
  67. extraEnv: []
  68. ## -- Map of extra arguments to pass to container.
  69. extraArgs: {}
  70. ## -- Extra volumes to pass to pod.
  71. extraVolumes: []
  72. ## -- Extra volumes to mount to the container.
  73. extraVolumeMounts: []
  74. ## -- Extra containers to add to the pod.
  75. extraContainers: []
  76. # -- Annotations to add to Deployment
  77. deploymentAnnotations: {}
  78. # -- Annotations to add to Pod
  79. podAnnotations: {}
  80. podLabels: {}
  81. podSecurityContext: {}
  82. # fsGroup: 2000
  83. securityContext: {}
  84. # capabilities:
  85. # drop:
  86. # - ALL
  87. # readOnlyRootFilesystem: true
  88. # runAsNonRoot: true
  89. # runAsUser: 1000
  90. resources: {}
  91. # requests:
  92. # cpu: 10m
  93. # memory: 32Mi
  94. prometheus:
  95. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead.
  96. enabled: false
  97. service:
  98. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead.
  99. port: 8080
  100. serviceMonitor:
  101. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  102. enabled: false
  103. # -- namespace where you want to install ServiceMonitors
  104. namespace: ""
  105. # -- Additional labels
  106. additionalLabels: {}
  107. # -- Interval to scrape metrics
  108. interval: 30s
  109. # -- Timeout if metrics can't be retrieved in given time interval
  110. scrapeTimeout: 25s
  111. # -- Let prometheus add an exported_ prefix to conflicting labels
  112. honorLabels: false
  113. # -- Metric relabel configs to apply to samples before ingestion. [Metric Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs)
  114. metricRelabelings: []
  115. # - action: replace
  116. # regex: (.*)
  117. # replacement: $1
  118. # sourceLabels:
  119. # - exported_namespace
  120. # targetLabel: namespace
  121. # -- Relabel configs to apply to samples before ingestion. [Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config)
  122. relabelings: []
  123. # - sourceLabels: [__meta_kubernetes_pod_node_name]
  124. # separator: ;
  125. # regex: ^(.*)$
  126. # targetLabel: nodename
  127. # replacement: $1
  128. # action: replace
  129. metrics:
  130. service:
  131. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  132. enabled: false
  133. # -- Metrics service port to scrape
  134. port: 8080
  135. # -- Additional service annotations
  136. annotations: {}
  137. nodeSelector: {}
  138. tolerations: []
  139. topologySpreadConstraints: []
  140. affinity: {}
  141. # -- Pod priority class name.
  142. priorityClassName: ""
  143. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  144. podDisruptionBudget:
  145. enabled: false
  146. minAvailable: 1
  147. # maxUnavailable: 1
  148. webhook:
  149. # -- Specifies whether a webhook deployment be created.
  150. create: true
  151. # -- Specifices the time to check if the cert is valid
  152. certCheckInterval: "5m"
  153. # -- Specifices the lookaheadInterval for certificate validity
  154. lookaheadInterval: ""
  155. replicaCount: 1
  156. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  157. revisionHistoryLimit: 10
  158. certDir: /tmp/certs
  159. # -- Specifies whether validating webhooks should be created with failurePolicy: Fail or Ignore
  160. failurePolicy: Fail
  161. # -- Specifies if webhook pod should use hostNetwork or not.
  162. hostNetwork: false
  163. image:
  164. repository: ghcr.io/external-secrets/external-secrets
  165. pullPolicy: IfNotPresent
  166. # -- The image tag to use. The default is the chart appVersion.
  167. tag: ""
  168. imagePullSecrets: []
  169. nameOverride: ""
  170. fullnameOverride: ""
  171. # -- The port the webhook will listen to
  172. port: 10250
  173. rbac:
  174. # -- Specifies whether role and rolebinding resources should be created.
  175. create: true
  176. serviceAccount:
  177. # -- Specifies whether a service account should be created.
  178. create: true
  179. # -- Automounts the service account token in all containers of the pod
  180. automount: true
  181. # -- Annotations to add to the service account.
  182. annotations: {}
  183. # -- Extra Labels to add to the service account.
  184. extraLabels: {}
  185. # -- The name of the service account to use.
  186. # If not set and create is true, a name is generated using the fullname template.
  187. name: ""
  188. nodeSelector: {}
  189. tolerations: []
  190. affinity: {}
  191. # -- Pod priority class name.
  192. priorityClassName: ""
  193. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  194. podDisruptionBudget:
  195. enabled: false
  196. minAvailable: 1
  197. # maxUnavailable: 1
  198. prometheus:
  199. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  200. enabled: false
  201. service:
  202. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  203. port: 8080
  204. serviceMonitor:
  205. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  206. enabled: false
  207. # -- Additional labels
  208. additionalLabels: {}
  209. # -- Interval to scrape metrics
  210. interval: 30s
  211. # -- Timeout if metrics can't be retrieved in given time interval
  212. scrapeTimeout: 25s
  213. metrics:
  214. service:
  215. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  216. enabled: false
  217. # -- Metrics service port to scrape
  218. port: 8080
  219. # -- Additional service annotations
  220. annotations: {}
  221. readinessProbe:
  222. # -- Address for readiness probe
  223. address: ""
  224. # -- ReadinessProbe port for kubelet
  225. port: 8081
  226. ## -- Extra environment variables to add to container.
  227. extraEnv: []
  228. ## -- Map of extra arguments to pass to container.
  229. extraArgs: {}
  230. ## -- Extra volumes to pass to pod.
  231. extraVolumes: []
  232. ## -- Extra volumes to mount to the container.
  233. extraVolumeMounts: []
  234. # -- Annotations to add to Secret
  235. secretAnnotations: {}
  236. # -- Annotations to add to Deployment
  237. deploymentAnnotations: {}
  238. # -- Annotations to add to Pod
  239. podAnnotations: {}
  240. podLabels: {}
  241. podSecurityContext: {}
  242. # fsGroup: 2000
  243. securityContext: {}
  244. # capabilities:
  245. # drop:
  246. # - ALL
  247. # readOnlyRootFilesystem: true
  248. # runAsNonRoot: true
  249. # runAsUser: 1000
  250. resources: {}
  251. # requests:
  252. # cpu: 10m
  253. # memory: 32Mi
  254. certController:
  255. # -- Specifies whether a certificate controller deployment be created.
  256. create: true
  257. requeueInterval: "5m"
  258. replicaCount: 1
  259. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  260. revisionHistoryLimit: 10
  261. image:
  262. repository: ghcr.io/external-secrets/external-secrets
  263. pullPolicy: IfNotPresent
  264. tag: ""
  265. imagePullSecrets: []
  266. nameOverride: ""
  267. fullnameOverride: ""
  268. rbac:
  269. # -- Specifies whether role and rolebinding resources should be created.
  270. create: true
  271. serviceAccount:
  272. # -- Specifies whether a service account should be created.
  273. create: true
  274. # -- Automounts the service account token in all containers of the pod
  275. automount: true
  276. # -- Annotations to add to the service account.
  277. annotations: {}
  278. # -- Extra Labels to add to the service account.
  279. extraLabels: {}
  280. # -- The name of the service account to use.
  281. # If not set and create is true, a name is generated using the fullname template.
  282. name: ""
  283. nodeSelector: {}
  284. tolerations: []
  285. affinity: {}
  286. # -- Pod priority class name.
  287. priorityClassName: ""
  288. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  289. podDisruptionBudget:
  290. enabled: false
  291. minAvailable: 1
  292. # maxUnavailable: 1
  293. prometheus:
  294. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  295. enabled: false
  296. service:
  297. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  298. port: 8080
  299. serviceMonitor:
  300. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  301. enabled: false
  302. # -- Additional labels
  303. additionalLabels: {}
  304. # -- Interval to scrape metrics
  305. interval: 30s
  306. # -- Timeout if metrics can't be retrieved in given time interval
  307. scrapeTimeout: 25s
  308. metrics:
  309. service:
  310. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  311. enabled: false
  312. # -- Metrics service port to scrape
  313. port: 8080
  314. # -- Additional service annotations
  315. annotations: {}
  316. ## -- Extra environment variables to add to container.
  317. extraEnv: []
  318. ## -- Map of extra arguments to pass to container.
  319. extraArgs: {}
  320. ## -- Extra volumes to pass to pod.
  321. extraVolumes: []
  322. ## -- Extra volumes to mount to the container.
  323. extraVolumeMounts: []
  324. # -- Annotations to add to Deployment
  325. deploymentAnnotations: {}
  326. # -- Annotations to add to Pod
  327. podAnnotations: {}
  328. podLabels: {}
  329. podSecurityContext: {}
  330. # fsGroup: 2000
  331. securityContext: {}
  332. # capabilities:
  333. # drop:
  334. # - ALL
  335. # readOnlyRootFilesystem: true
  336. # runAsNonRoot: true
  337. # runAsUser: 1000
  338. resources: {}
  339. # requests:
  340. # cpu: 10m
  341. # memory: 32Mi
  342. # -- Specifies `dnsOptions` to deployment
  343. dnsConfig: {}