values.yaml 8.3 KB

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