values.yaml 12 KB

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