values.yaml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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. # -- Additional labels
  104. additionalLabels: {}
  105. # -- Interval to scrape metrics
  106. interval: 30s
  107. # -- Timeout if metrics can't be retrieved in given time interval
  108. scrapeTimeout: 25s
  109. # -- Let prometheus add an exported_ prefix to conflicting labels
  110. honorLabels: false
  111. # -- Metric relabel configs to apply to samples before ingestion. [Metric Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs)
  112. metricRelabelings: []
  113. # - action: replace
  114. # regex: (.*)
  115. # replacement: $1
  116. # sourceLabels:
  117. # - exported_namespace
  118. # targetLabel: namespace
  119. # -- Relabel configs to apply to samples before ingestion. [Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config)
  120. relabelings: []
  121. # - sourceLabels: [__meta_kubernetes_pod_node_name]
  122. # separator: ;
  123. # regex: ^(.*)$
  124. # targetLabel: nodename
  125. # replacement: $1
  126. # action: replace
  127. metrics:
  128. service:
  129. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  130. enabled: false
  131. # -- Metrics service port to scrape
  132. port: 8080
  133. # -- Additional service annotations
  134. annotations: {}
  135. nodeSelector: {}
  136. tolerations: []
  137. topologySpreadConstraints: []
  138. affinity: {}
  139. # -- Pod priority class name.
  140. priorityClassName: ""
  141. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  142. podDisruptionBudget:
  143. enabled: false
  144. minAvailable: 1
  145. # maxUnavailable: 1
  146. webhook:
  147. # -- Specifies whether a webhook deployment be created.
  148. create: true
  149. # -- Specifices the time to check if the cert is valid
  150. certCheckInterval: "5m"
  151. # -- Specifices the lookaheadInterval for certificate validity
  152. lookaheadInterval: ""
  153. replicaCount: 1
  154. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  155. revisionHistoryLimit: 10
  156. certDir: /tmp/certs
  157. # -- Specifies whether validating webhooks should be created with failurePolicy: Fail or Ignore
  158. failurePolicy: Fail
  159. # -- Specifies if webhook pod should use hostNetwork or not.
  160. hostNetwork: false
  161. image:
  162. repository: ghcr.io/external-secrets/external-secrets
  163. pullPolicy: IfNotPresent
  164. # -- The image tag to use. The default is the chart appVersion.
  165. tag: ""
  166. imagePullSecrets: []
  167. nameOverride: ""
  168. fullnameOverride: ""
  169. # -- The port the webhook will listen to
  170. port: 10250
  171. rbac:
  172. # -- Specifies whether role and rolebinding resources should be created.
  173. create: true
  174. serviceAccount:
  175. # -- Specifies whether a service account should be created.
  176. create: true
  177. # -- Automounts the service account token in all containers of the pod
  178. automount: true
  179. # -- Annotations to add to the service account.
  180. annotations: {}
  181. # -- Extra Labels to add to the service account.
  182. extraLabels: {}
  183. # -- The name of the service account to use.
  184. # If not set and create is true, a name is generated using the fullname template.
  185. name: ""
  186. nodeSelector: {}
  187. tolerations: []
  188. affinity: {}
  189. # -- Pod priority class name.
  190. priorityClassName: ""
  191. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  192. podDisruptionBudget:
  193. enabled: false
  194. minAvailable: 1
  195. # maxUnavailable: 1
  196. prometheus:
  197. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  198. enabled: false
  199. service:
  200. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  201. port: 8080
  202. serviceMonitor:
  203. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  204. enabled: false
  205. # -- Additional labels
  206. additionalLabels: {}
  207. # -- Interval to scrape metrics
  208. interval: 30s
  209. # -- Timeout if metrics can't be retrieved in given time interval
  210. scrapeTimeout: 25s
  211. metrics:
  212. service:
  213. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  214. enabled: false
  215. # -- Metrics service port to scrape
  216. port: 8080
  217. # -- Additional service annotations
  218. annotations: {}
  219. readinessProbe:
  220. # -- Address for readiness probe
  221. address: ""
  222. # -- ReadinessProbe port for kubelet
  223. port: 8081
  224. ## -- Extra environment variables to add to container.
  225. extraEnv: []
  226. ## -- Map of extra arguments to pass to container.
  227. extraArgs: {}
  228. ## -- Extra volumes to pass to pod.
  229. extraVolumes: []
  230. ## -- Extra volumes to mount to the container.
  231. extraVolumeMounts: []
  232. # -- Annotations to add to Secret
  233. secretAnnotations: {}
  234. # -- Annotations to add to Deployment
  235. deploymentAnnotations: {}
  236. # -- Annotations to add to Pod
  237. podAnnotations: {}
  238. podLabels: {}
  239. podSecurityContext: {}
  240. # fsGroup: 2000
  241. securityContext: {}
  242. # capabilities:
  243. # drop:
  244. # - ALL
  245. # readOnlyRootFilesystem: true
  246. # runAsNonRoot: true
  247. # runAsUser: 1000
  248. resources: {}
  249. # requests:
  250. # cpu: 10m
  251. # memory: 32Mi
  252. certController:
  253. # -- Specifies whether a certificate controller deployment be created.
  254. create: true
  255. requeueInterval: "5m"
  256. replicaCount: 1
  257. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  258. revisionHistoryLimit: 10
  259. image:
  260. repository: ghcr.io/external-secrets/external-secrets
  261. pullPolicy: IfNotPresent
  262. tag: ""
  263. imagePullSecrets: []
  264. nameOverride: ""
  265. fullnameOverride: ""
  266. rbac:
  267. # -- Specifies whether role and rolebinding resources should be created.
  268. create: true
  269. serviceAccount:
  270. # -- Specifies whether a service account should be created.
  271. create: true
  272. # -- Automounts the service account token in all containers of the pod
  273. automount: true
  274. # -- Annotations to add to the service account.
  275. annotations: {}
  276. # -- Extra Labels to add to the service account.
  277. extraLabels: {}
  278. # -- The name of the service account to use.
  279. # If not set and create is true, a name is generated using the fullname template.
  280. name: ""
  281. nodeSelector: {}
  282. tolerations: []
  283. affinity: {}
  284. # -- Pod priority class name.
  285. priorityClassName: ""
  286. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  287. podDisruptionBudget:
  288. enabled: false
  289. minAvailable: 1
  290. # maxUnavailable: 1
  291. prometheus:
  292. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  293. enabled: false
  294. service:
  295. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  296. port: 8080
  297. serviceMonitor:
  298. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  299. enabled: false
  300. # -- Additional labels
  301. additionalLabels: {}
  302. # -- Interval to scrape metrics
  303. interval: 30s
  304. # -- Timeout if metrics can't be retrieved in given time interval
  305. scrapeTimeout: 25s
  306. metrics:
  307. service:
  308. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  309. enabled: false
  310. # -- Metrics service port to scrape
  311. port: 8080
  312. # -- Additional service annotations
  313. annotations: {}
  314. ## -- Extra environment variables to add to container.
  315. extraEnv: []
  316. ## -- Map of extra arguments to pass to container.
  317. extraArgs: {}
  318. ## -- Extra volumes to pass to pod.
  319. extraVolumes: []
  320. ## -- Extra volumes to mount to the container.
  321. extraVolumeMounts: []
  322. # -- Annotations to add to Deployment
  323. deploymentAnnotations: {}
  324. # -- Annotations to add to Pod
  325. podAnnotations: {}
  326. podLabels: {}
  327. podSecurityContext: {}
  328. # fsGroup: 2000
  329. securityContext: {}
  330. # capabilities:
  331. # drop:
  332. # - ALL
  333. # readOnlyRootFilesystem: true
  334. # runAsNonRoot: true
  335. # runAsUser: 1000
  336. resources: {}
  337. # requests:
  338. # cpu: 10m
  339. # memory: 32Mi
  340. # -- Specifies `dnsOptions` to deployment
  341. dnsConfig: {}