values.yaml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. replicaCount: 1
  2. image:
  3. repository: ghcr.io/external-secrets/external-secrets
  4. pullPolicy: IfNotPresent
  5. # -- The image tag to use. The default is the chart appVersion.
  6. # There are different image flavours available, like distroless and ubi.
  7. # Please see GitHub release notes for image tags for these flavors.
  8. # By default the distroless image is used.
  9. tag: ""
  10. # -- If set, install and upgrade CRDs through helm chart.
  11. installCRDs: true
  12. crds:
  13. # -- If true, create CRDs for Cluster External Secret.
  14. createClusterExternalSecret: true
  15. # -- If true, create CRDs for Cluster Secret Store.
  16. createClusterSecretStore: true
  17. # -- If true, create CRDs for Push Secret.
  18. createPushSecret: true
  19. imagePullSecrets: []
  20. nameOverride: ""
  21. fullnameOverride: ""
  22. # -- If true, external-secrets will perform leader election between instances to ensure no more
  23. # than one instance of external-secrets operates at a time.
  24. leaderElect: false
  25. # -- If set external secrets will filter matching
  26. # Secret Stores with the appropriate controller values.
  27. controllerClass: ""
  28. # -- If set external secrets are only reconciled in the
  29. # provided namespace
  30. scopedNamespace: ""
  31. # -- Must be used with scopedNamespace. If true, create scoped RBAC roles under the scoped namespace
  32. # and implicitly disable cluster stores and cluster external secrets
  33. scopedRBAC: false
  34. # -- if true, the operator will process cluster external secret. Else, it will ignore them.
  35. processClusterExternalSecret: true
  36. # -- if true, the operator will process cluster store. Else, it will ignore them.
  37. processClusterStore: true
  38. # -- Specifies whether an external secret operator deployment be created.
  39. createOperator: true
  40. # -- Specifies the number of concurrent ExternalSecret Reconciles external-secret executes at
  41. # a time.
  42. concurrent: 1
  43. serviceAccount:
  44. # -- Specifies whether a service account should be created.
  45. create: true
  46. # -- Automounts the service account token in all containers of the pod
  47. automount: true
  48. # -- Annotations to add to the service account.
  49. annotations: {}
  50. # -- Extra Labels to add to the service account.
  51. extraLabels: {}
  52. # -- The name of the service account to use.
  53. # If not set and create is true, a name is generated using the fullname template.
  54. name: ""
  55. rbac:
  56. # -- Specifies whether role and rolebinding resources should be created.
  57. create: true
  58. ## -- Extra environment variables to add to container.
  59. extraEnv: []
  60. ## -- Map of extra arguments to pass to container.
  61. extraArgs: {}
  62. ## -- Extra volumes to pass to pod.
  63. extraVolumes: []
  64. ## -- Extra volumes to mount to the container.
  65. extraVolumeMounts: []
  66. # -- Annotations to add to Deployment
  67. deploymentAnnotations: {}
  68. # -- Annotations to add to Pod
  69. podAnnotations: {}
  70. podLabels: {}
  71. podSecurityContext: {}
  72. # fsGroup: 2000
  73. securityContext: {}
  74. # capabilities:
  75. # drop:
  76. # - ALL
  77. # readOnlyRootFilesystem: true
  78. # runAsNonRoot: true
  79. # runAsUser: 1000
  80. resources: {}
  81. # requests:
  82. # cpu: 10m
  83. # memory: 32Mi
  84. prometheus:
  85. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead.
  86. enabled: false
  87. service:
  88. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead.
  89. port: 8080
  90. serviceMonitor:
  91. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  92. enabled: false
  93. # -- Additional labels
  94. additionalLabels: {}
  95. # -- Interval to scrape metrics
  96. interval: 30s
  97. # -- Timeout if metrics can't be retrieved in given time interval
  98. scrapeTimeout: 25s
  99. metrics:
  100. service:
  101. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  102. enabled: false
  103. # -- Metrics service port to scrape
  104. port: 8080
  105. # -- Additional service annotations
  106. annotations: {}
  107. nodeSelector: {}
  108. tolerations: []
  109. affinity: {}
  110. # -- Pod priority class name.
  111. priorityClassName: ""
  112. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  113. podDisruptionBudget:
  114. enabled: false
  115. minAvailable: 1
  116. # maxUnavailable: 1
  117. webhook:
  118. # -- Specifies whether a webhook deployment be created.
  119. create: true
  120. # -- Specifices the time to check if the cert is valid
  121. certCheckInterval: "5m"
  122. # -- Specifices the lookaheadInterval for certificate validity
  123. lookaheadInterval: ""
  124. replicaCount: 1
  125. certDir: /tmp/certs
  126. # -- specifies whether validating webhooks should be created with failurePolicy: Fail or Ignore
  127. failurePolicy: Fail
  128. # -- Specifies if webhook pod should use hostNetwork or not.
  129. hostNetwork: false
  130. image:
  131. repository: ghcr.io/external-secrets/external-secrets
  132. pullPolicy: IfNotPresent
  133. # -- The image tag to use. The default is the chart appVersion.
  134. tag: ""
  135. imagePullSecrets: []
  136. nameOverride: ""
  137. fullnameOverride: ""
  138. # -- The port the webhook will listen to
  139. port: 10250
  140. rbac:
  141. # -- Specifies whether role and rolebinding resources should be created.
  142. create: true
  143. serviceAccount:
  144. # -- Specifies whether a service account should be created.
  145. create: true
  146. # -- Automounts the service account token in all containers of the pod
  147. automount: true
  148. # -- Annotations to add to the service account.
  149. annotations: {}
  150. # -- Extra Labels to add to the service account.
  151. extraLabels: {}
  152. # -- The name of the service account to use.
  153. # If not set and create is true, a name is generated using the fullname template.
  154. name: ""
  155. nodeSelector: {}
  156. tolerations: []
  157. affinity: {}
  158. # -- Pod priority class name.
  159. priorityClassName: ""
  160. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  161. podDisruptionBudget:
  162. enabled: false
  163. minAvailable: 1
  164. # maxUnavailable: 1
  165. prometheus:
  166. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  167. enabled: false
  168. service:
  169. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  170. port: 8080
  171. serviceMonitor:
  172. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  173. enabled: false
  174. # -- Additional labels
  175. additionalLabels: {}
  176. # -- Interval to scrape metrics
  177. interval: 30s
  178. # -- Timeout if metrics can't be retrieved in given time interval
  179. scrapeTimeout: 25s
  180. metrics:
  181. service:
  182. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  183. enabled: false
  184. # -- Metrics service port to scrape
  185. port: 8080
  186. # -- Additional service annotations
  187. annotations: {}
  188. readinessProbe:
  189. # -- Address for readiness probe
  190. address: ""
  191. # -- ReadinessProbe port for kubelet
  192. port: 8081
  193. ## -- Extra environment variables to add to container.
  194. extraEnv: []
  195. ## -- Map of extra arguments to pass to container.
  196. extraArgs: {}
  197. ## -- Extra volumes to pass to pod.
  198. extraVolumes: []
  199. ## -- Extra volumes to mount to the container.
  200. extraVolumeMounts: []
  201. # -- Annotations to add to Secret
  202. secretAnnotations: {}
  203. # -- Annotations to add to Deployment
  204. deploymentAnnotations: {}
  205. # -- Annotations to add to Pod
  206. podAnnotations: {}
  207. podLabels: {}
  208. podSecurityContext: {}
  209. # fsGroup: 2000
  210. securityContext: {}
  211. # capabilities:
  212. # drop:
  213. # - ALL
  214. # readOnlyRootFilesystem: true
  215. # runAsNonRoot: true
  216. # runAsUser: 1000
  217. resources: {}
  218. # requests:
  219. # cpu: 10m
  220. # memory: 32Mi
  221. certController:
  222. # -- Specifies whether a certificate controller deployment be created.
  223. create: true
  224. requeueInterval: "5m"
  225. replicaCount: 1
  226. image:
  227. repository: ghcr.io/external-secrets/external-secrets
  228. pullPolicy: IfNotPresent
  229. tag: ""
  230. imagePullSecrets: []
  231. nameOverride: ""
  232. fullnameOverride: ""
  233. rbac:
  234. # -- Specifies whether role and rolebinding resources should be created.
  235. create: true
  236. serviceAccount:
  237. # -- Specifies whether a service account should be created.
  238. create: true
  239. # -- Automounts the service account token in all containers of the pod
  240. automount: true
  241. # -- Annotations to add to the service account.
  242. annotations: {}
  243. # -- Extra Labels to add to the service account.
  244. extraLabels: {}
  245. # -- The name of the service account to use.
  246. # If not set and create is true, a name is generated using the fullname template.
  247. name: ""
  248. nodeSelector: {}
  249. tolerations: []
  250. affinity: {}
  251. # -- Pod priority class name.
  252. priorityClassName: ""
  253. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  254. podDisruptionBudget:
  255. enabled: false
  256. minAvailable: 1
  257. # maxUnavailable: 1
  258. prometheus:
  259. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  260. enabled: false
  261. service:
  262. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  263. port: 8080
  264. serviceMonitor:
  265. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  266. enabled: false
  267. # -- Additional labels
  268. additionalLabels: {}
  269. # -- Interval to scrape metrics
  270. interval: 30s
  271. # -- Timeout if metrics can't be retrieved in given time interval
  272. scrapeTimeout: 25s
  273. metrics:
  274. service:
  275. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  276. enabled: false
  277. # -- Metrics service port to scrape
  278. port: 8080
  279. # -- Additional service annotations
  280. annotations: {}
  281. ## -- Extra environment variables to add to container.
  282. extraEnv: []
  283. ## -- Map of extra arguments to pass to container.
  284. extraArgs: {}
  285. ## -- Extra volumes to pass to pod.
  286. extraVolumes: []
  287. ## -- Extra volumes to mount to the container.
  288. extraVolumeMounts: []
  289. # -- Annotations to add to Deployment
  290. deploymentAnnotations: {}
  291. # -- Annotations to add to Pod
  292. podAnnotations: {}
  293. podLabels: {}
  294. podSecurityContext: {}
  295. # fsGroup: 2000
  296. securityContext: {}
  297. # capabilities:
  298. # drop:
  299. # - ALL
  300. # readOnlyRootFilesystem: true
  301. # runAsNonRoot: true
  302. # runAsUser: 1000
  303. resources: {}
  304. # requests:
  305. # cpu: 10m
  306. # memory: 32Mi
  307. # -- Specifies `dnsOptions` to deployment
  308. dnsConfig: {}