values.yaml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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. # -- Annotations to add to Deployment
  54. deploymentAnnotations: {}
  55. # -- Annotations to add to Pod
  56. podAnnotations: {}
  57. podLabels: {}
  58. podSecurityContext: {}
  59. # fsGroup: 2000
  60. securityContext: {}
  61. # capabilities:
  62. # drop:
  63. # - ALL
  64. # readOnlyRootFilesystem: true
  65. # runAsNonRoot: true
  66. # runAsUser: 1000
  67. resources: {}
  68. # requests:
  69. # cpu: 10m
  70. # memory: 32Mi
  71. prometheus:
  72. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead.
  73. enabled: false
  74. service:
  75. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead.
  76. port: 8080
  77. serviceMonitor:
  78. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  79. enabled: false
  80. # -- Additional labels
  81. additionalLabels: {}
  82. # -- Interval to scrape metrics
  83. interval: 30s
  84. # -- Timeout if metrics can't be retrieved in given time interval
  85. scrapeTimeout: 25s
  86. nodeSelector: {}
  87. tolerations: []
  88. affinity: {}
  89. # -- Pod priority class name.
  90. priorityClassName: ""
  91. webhook:
  92. # -- Specifies whether a webhook deployment be created.
  93. create: true
  94. certCheckInterval: "5m"
  95. replicaCount: 1
  96. certDir: /tmp/certs
  97. # -- specifies whether validating webhooks should be created with failurePolicy: Fail or Ignore
  98. failurePolicy: Fail
  99. # -- Specifies if webhook pod should use hostNetwork or not.
  100. hostNetwork: false
  101. image:
  102. repository: ghcr.io/external-secrets/external-secrets
  103. pullPolicy: IfNotPresent
  104. # -- The image tag to use. The default is the chart appVersion.
  105. tag: ""
  106. imagePullSecrets: []
  107. nameOverride: ""
  108. fullnameOverride: ""
  109. # -- The port the webhook will listen to
  110. port: 10250
  111. rbac:
  112. # -- Specifies whether role and rolebinding resources should be created.
  113. create: true
  114. serviceAccount:
  115. # -- Specifies whether a service account should be created.
  116. create: true
  117. # -- Annotations to add to the service account.
  118. annotations: {}
  119. # -- The name of the service account to use.
  120. # If not set and create is true, a name is generated using the fullname template.
  121. name: ""
  122. nodeSelector: {}
  123. tolerations: []
  124. affinity: {}
  125. # -- Pod priority class name.
  126. priorityClassName: ""
  127. prometheus:
  128. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  129. enabled: false
  130. service:
  131. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  132. port: 8080
  133. serviceMonitor:
  134. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  135. enabled: false
  136. # -- Additional labels
  137. additionalLabels: {}
  138. # -- Interval to scrape metrics
  139. interval: 30s
  140. # -- Timeout if metrics can't be retrieved in given time interval
  141. scrapeTimeout: 25s
  142. ## -- Extra environment variables to add to container.
  143. extraEnv: []
  144. ## -- Map of extra arguments to pass to container.
  145. extraArgs: {}
  146. # -- Annotations to add to Secret
  147. secretAnnotations: {}
  148. # -- Annotations to add to Deployment
  149. deploymentAnnotations: {}
  150. # -- Annotations to add to Pod
  151. podAnnotations: {}
  152. podLabels: {}
  153. podSecurityContext: {}
  154. # fsGroup: 2000
  155. securityContext: {}
  156. # capabilities:
  157. # drop:
  158. # - ALL
  159. # readOnlyRootFilesystem: true
  160. # runAsNonRoot: true
  161. # runAsUser: 1000
  162. resources: {}
  163. # requests:
  164. # cpu: 10m
  165. # memory: 32Mi
  166. certController:
  167. # -- Specifies whether a certificate controller deployment be created.
  168. create: true
  169. requeueInterval: "5m"
  170. image:
  171. repository: ghcr.io/external-secrets/external-secrets
  172. pullPolicy: IfNotPresent
  173. tag: ""
  174. imagePullSecrets: []
  175. nameOverride: ""
  176. fullnameOverride: ""
  177. rbac:
  178. # -- Specifies whether role and rolebinding resources should be created.
  179. create: true
  180. serviceAccount:
  181. # -- Specifies whether a service account should be created.
  182. create: true
  183. # -- Annotations to add to the service account.
  184. annotations: {}
  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. prometheus:
  194. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  195. enabled: false
  196. service:
  197. # -- deprecated. will be removed with 0.7.0, use serviceMonitor instead
  198. port: 8080
  199. serviceMonitor:
  200. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  201. enabled: false
  202. # -- Additional labels
  203. additionalLabels: {}
  204. # -- Interval to scrape metrics
  205. interval: 30s
  206. # -- Timeout if metrics can't be retrieved in given time interval
  207. scrapeTimeout: 25s
  208. ## -- Extra environment variables to add to container.
  209. extraEnv: []
  210. ## -- Map of extra arguments to pass to container.
  211. extraArgs: {}
  212. # -- Annotations to add to Deployment
  213. deploymentAnnotations: {}
  214. # -- Annotations to add to Pod
  215. podAnnotations: {}
  216. podLabels: {}
  217. podSecurityContext: {}
  218. # fsGroup: 2000
  219. securityContext: {}
  220. # capabilities:
  221. # drop:
  222. # - ALL
  223. # readOnlyRootFilesystem: true
  224. # runAsNonRoot: true
  225. # runAsUser: 1000
  226. resources: {}
  227. # requests:
  228. # cpu: 10m
  229. # memory: 32Mi