values.yaml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. global:
  2. nodeSelector: {}
  3. tolerations: []
  4. topologySpreadConstraints: []
  5. affinity: {}
  6. compatibility:
  7. openshift:
  8. # -- Manages the securityContext properties to make them compatible with OpenShift.
  9. # Possible values:
  10. # auto - Apply configurations if it is detected that OpenShift is the target platform.
  11. # force - Always apply configurations.
  12. # disabled - No modification applied.
  13. adaptSecurityContext: auto
  14. replicaCount: 1
  15. bitwarden-sdk-server:
  16. enabled: false
  17. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  18. revisionHistoryLimit: 10
  19. image:
  20. repository: oci.external-secrets.io/external-secrets/external-secrets
  21. pullPolicy: IfNotPresent
  22. # -- The image tag to use. The default is the chart appVersion.
  23. tag: ""
  24. # -- The flavour of tag you want to use
  25. # There are different image flavours available, like distroless and ubi.
  26. # Please see GitHub release notes for image tags for these flavors.
  27. # By default, the distroless image is used.
  28. flavour: ""
  29. # -- If set, install and upgrade CRDs through helm chart.
  30. installCRDs: true
  31. crds:
  32. # -- If true, create CRDs for Cluster External Secret.
  33. createClusterExternalSecret: true
  34. # -- If true, create CRDs for Cluster Secret Store.
  35. createClusterSecretStore: true
  36. # -- If true, create CRDs for Cluster Generator.
  37. createClusterGenerator: true
  38. # -- If true, create CRDs for Push Secret.
  39. createPushSecret: true
  40. annotations: {}
  41. conversion:
  42. # -- If webhook is set to false this also needs to be set to false otherwise the kubeapi will be hammered because the conversion is looking for a webhook endpoint.
  43. enabled: true
  44. imagePullSecrets: []
  45. nameOverride: ""
  46. fullnameOverride: ""
  47. namespaceOverride: ""
  48. # -- Additional labels added to all helm chart resources.
  49. commonLabels: {}
  50. # -- If true, external-secrets will perform leader election between instances to ensure no more
  51. # than one instance of external-secrets operates at a time.
  52. leaderElect: false
  53. # -- If set external secrets will filter matching
  54. # Secret Stores with the appropriate controller values.
  55. controllerClass: ""
  56. # -- If true external secrets will use recommended kubernetes
  57. # annotations as prometheus metric labels.
  58. extendedMetricLabels: false
  59. # -- If set external secrets are only reconciled in the
  60. # provided namespace
  61. scopedNamespace: ""
  62. # -- Must be used with scopedNamespace. If true, create scoped RBAC roles under the scoped namespace
  63. # and implicitly disable cluster stores and cluster external secrets
  64. scopedRBAC: false
  65. # -- if true, the operator will process cluster external secret. Else, it will ignore them.
  66. processClusterExternalSecret: true
  67. # -- if true, the operator will process cluster store. Else, it will ignore them.
  68. processClusterStore: true
  69. # -- if true, the operator will process push secret. Else, it will ignore them.
  70. processPushSecret: true
  71. # -- Specifies whether an external secret operator deployment be created.
  72. createOperator: true
  73. # -- Specifies the number of concurrent ExternalSecret Reconciles external-secret executes at
  74. # a time.
  75. concurrent: 1
  76. # -- Specifices Log Params to the Webhook
  77. log:
  78. level: info
  79. timeEncoding: epoch
  80. service:
  81. # -- Set the ip family policy to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services)
  82. ipFamilyPolicy: ""
  83. # -- Sets the families that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6.
  84. ipFamilies: []
  85. serviceAccount:
  86. # -- Specifies whether a service account should be created.
  87. create: true
  88. # -- Automounts the service account token in all containers of the pod
  89. automount: true
  90. # -- Annotations to add to the service account.
  91. annotations: {}
  92. # -- Extra Labels to add to the service account.
  93. extraLabels: {}
  94. # -- The name of the service account to use.
  95. # If not set and create is true, a name is generated using the fullname template.
  96. name: ""
  97. rbac:
  98. # -- Specifies whether role and rolebinding resources should be created.
  99. create: true
  100. servicebindings:
  101. # -- Specifies whether a clusterrole to give servicebindings read access should be created.
  102. create: true
  103. ## -- Extra environment variables to add to container.
  104. extraEnv: []
  105. ## -- Map of extra arguments to pass to container.
  106. extraArgs: {}
  107. ## -- Extra volumes to pass to pod.
  108. extraVolumes: []
  109. ## -- Extra Kubernetes objects to deploy with the helm chart
  110. extraObjects: []
  111. ## -- Extra volumes to mount to the container.
  112. extraVolumeMounts: []
  113. ## -- Extra containers to add to the pod.
  114. extraContainers: []
  115. # -- Annotations to add to Deployment
  116. deploymentAnnotations: {}
  117. # -- Annotations to add to Pod
  118. podAnnotations: {}
  119. podLabels: {}
  120. podSecurityContext:
  121. enabled: true
  122. # fsGroup: 2000
  123. securityContext:
  124. allowPrivilegeEscalation: false
  125. capabilities:
  126. drop:
  127. - ALL
  128. enabled: true
  129. readOnlyRootFilesystem: true
  130. runAsNonRoot: true
  131. runAsUser: 1000
  132. seccompProfile:
  133. type: RuntimeDefault
  134. resources: {}
  135. # requests:
  136. # cpu: 10m
  137. # memory: 32Mi
  138. serviceMonitor:
  139. # -- Specifies whether to create a ServiceMonitor resource for collecting Prometheus metrics
  140. enabled: false
  141. # -- namespace where you want to install ServiceMonitors
  142. namespace: ""
  143. # -- Additional labels
  144. additionalLabels: {}
  145. # -- Interval to scrape metrics
  146. interval: 30s
  147. # -- Timeout if metrics can't be retrieved in given time interval
  148. scrapeTimeout: 25s
  149. # -- Let prometheus add an exported_ prefix to conflicting labels
  150. honorLabels: false
  151. # -- Metric relabel configs to apply to samples before ingestion. [Metric Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs)
  152. metricRelabelings: []
  153. # - action: replace
  154. # regex: (.*)
  155. # replacement: $1
  156. # sourceLabels:
  157. # - exported_namespace
  158. # targetLabel: namespace
  159. # -- Relabel configs to apply to samples before ingestion. [Relabeling](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config)
  160. relabelings: []
  161. # - sourceLabels: [__meta_kubernetes_pod_node_name]
  162. # separator: ;
  163. # regex: ^(.*)$
  164. # targetLabel: nodename
  165. # replacement: $1
  166. # action: replace
  167. metrics:
  168. listen:
  169. port: 8080
  170. service:
  171. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  172. enabled: false
  173. # -- Metrics service port to scrape
  174. port: 8080
  175. # -- Additional service annotations
  176. annotations: {}
  177. nodeSelector: {}
  178. tolerations: []
  179. topologySpreadConstraints: []
  180. affinity: {}
  181. # -- Pod priority class name.
  182. priorityClassName: ""
  183. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  184. podDisruptionBudget:
  185. enabled: false
  186. minAvailable: 1
  187. # maxUnavailable: 1
  188. # -- Run the controller on the host network
  189. hostNetwork: false
  190. webhook:
  191. # -- Specifies whether a webhook deployment be created.
  192. create: true
  193. # -- Specifices the time to check if the cert is valid
  194. certCheckInterval: "5m"
  195. # -- Specifices the lookaheadInterval for certificate validity
  196. lookaheadInterval: ""
  197. replicaCount: 1
  198. # -- Specifices Log Params to the Webhook
  199. log:
  200. level: info
  201. timeEncoding: epoch
  202. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  203. revisionHistoryLimit: 10
  204. certDir: /tmp/certs
  205. # -- Specifies whether validating webhooks should be created with failurePolicy: Fail or Ignore
  206. failurePolicy: Fail
  207. # -- Specifies if webhook pod should use hostNetwork or not.
  208. hostNetwork: false
  209. image:
  210. repository: oci.external-secrets.io/external-secrets/external-secrets
  211. pullPolicy: IfNotPresent
  212. # -- The image tag to use. The default is the chart appVersion.
  213. tag: ""
  214. # -- The flavour of tag you want to use
  215. flavour: ""
  216. imagePullSecrets: []
  217. nameOverride: ""
  218. fullnameOverride: ""
  219. # -- The port the webhook will listen to
  220. port: 10250
  221. rbac:
  222. # -- Specifies whether role and rolebinding resources should be created.
  223. create: true
  224. serviceAccount:
  225. # -- Specifies whether a service account should be created.
  226. create: true
  227. # -- Automounts the service account token in all containers of the pod
  228. automount: true
  229. # -- Annotations to add to the service account.
  230. annotations: {}
  231. # -- Extra Labels to add to the service account.
  232. extraLabels: {}
  233. # -- The name of the service account to use.
  234. # If not set and create is true, a name is generated using the fullname template.
  235. name: ""
  236. nodeSelector: {}
  237. certManager:
  238. # -- Enabling cert-manager support will disable the built in secret and
  239. # switch to using cert-manager (installed separately) to automatically issue
  240. # and renew the webhook certificate. This chart does not install
  241. # cert-manager for you, See https://cert-manager.io/docs/
  242. enabled: false
  243. # -- Automatically add the cert-manager.io/inject-ca-from annotation to the
  244. # webhooks and CRDs. As long as you have the cert-manager CA Injector
  245. # enabled, this will automatically setup your webhook's CA to the one used
  246. # by cert-manager. See https://cert-manager.io/docs/concepts/ca-injector
  247. addInjectorAnnotations: true
  248. cert:
  249. # -- Create a certificate resource within this chart. See
  250. # https://cert-manager.io/docs/usage/certificate/
  251. create: true
  252. # -- For the Certificate created by this chart, setup the issuer. See
  253. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.IssuerSpec
  254. issuerRef:
  255. group: cert-manager.io
  256. kind: "Issuer"
  257. name: "my-issuer"
  258. # -- Set the requested duration (i.e. lifetime) of the Certificate. See
  259. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec
  260. # One year by default.
  261. duration: "8760h"
  262. # -- How long before the currently issued certificate’s expiry
  263. # cert-manager should renew the certificate. See
  264. # https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec
  265. # Note that renewBefore should be greater than .webhook.lookaheadInterval
  266. # since the webhook will check this far in advance that the certificate is
  267. # valid.
  268. renewBefore: ""
  269. # -- Add extra annotations to the Certificate resource.
  270. annotations: {}
  271. tolerations: []
  272. topologySpreadConstraints: []
  273. affinity: {}
  274. # -- Pod priority class name.
  275. priorityClassName: ""
  276. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  277. podDisruptionBudget:
  278. enabled: false
  279. minAvailable: 1
  280. # maxUnavailable: 1
  281. metrics:
  282. listen:
  283. port: 8080
  284. service:
  285. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  286. enabled: false
  287. # -- Metrics service port to scrape
  288. port: 8080
  289. # -- Additional service annotations
  290. annotations: {}
  291. readinessProbe:
  292. # -- Address for readiness probe
  293. address: ""
  294. # -- ReadinessProbe port for kubelet
  295. port: 8081
  296. ## -- Extra environment variables to add to container.
  297. extraEnv: []
  298. ## -- Map of extra arguments to pass to container.
  299. extraArgs: {}
  300. ## -- Extra volumes to pass to pod.
  301. extraVolumes: []
  302. ## -- Extra volumes to mount to the container.
  303. extraVolumeMounts: []
  304. # -- Annotations to add to Secret
  305. secretAnnotations: {}
  306. # -- Annotations to add to Deployment
  307. deploymentAnnotations: {}
  308. # -- Annotations to add to Pod
  309. podAnnotations: {}
  310. podLabels: {}
  311. podSecurityContext:
  312. enabled: true
  313. # fsGroup: 2000
  314. securityContext:
  315. allowPrivilegeEscalation: false
  316. capabilities:
  317. drop:
  318. - ALL
  319. enabled: true
  320. readOnlyRootFilesystem: true
  321. runAsNonRoot: true
  322. runAsUser: 1000
  323. seccompProfile:
  324. type: RuntimeDefault
  325. resources: {}
  326. # requests:
  327. # cpu: 10m
  328. # memory: 32Mi
  329. certController:
  330. # -- Specifies whether a certificate controller deployment be created.
  331. create: true
  332. requeueInterval: "5m"
  333. replicaCount: 1
  334. # -- Specifices Log Params to the Webhook
  335. log:
  336. level: info
  337. timeEncoding: epoch
  338. # -- Specifies the amount of historic ReplicaSets k8s should keep (see https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
  339. revisionHistoryLimit: 10
  340. image:
  341. repository: oci.external-secrets.io/external-secrets/external-secrets
  342. pullPolicy: IfNotPresent
  343. tag: ""
  344. flavour: ""
  345. imagePullSecrets: []
  346. nameOverride: ""
  347. fullnameOverride: ""
  348. rbac:
  349. # -- Specifies whether role and rolebinding resources should be created.
  350. create: true
  351. serviceAccount:
  352. # -- Specifies whether a service account should be created.
  353. create: true
  354. # -- Automounts the service account token in all containers of the pod
  355. automount: true
  356. # -- Annotations to add to the service account.
  357. annotations: {}
  358. # -- Extra Labels to add to the service account.
  359. extraLabels: {}
  360. # -- The name of the service account to use.
  361. # If not set and create is true, a name is generated using the fullname template.
  362. name: ""
  363. nodeSelector: {}
  364. tolerations: []
  365. topologySpreadConstraints: []
  366. affinity: {}
  367. # -- Run the certController on the host network
  368. hostNetwork: false
  369. # -- Pod priority class name.
  370. priorityClassName: ""
  371. # -- Pod disruption budget - for more details see https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
  372. podDisruptionBudget:
  373. enabled: false
  374. minAvailable: 1
  375. # maxUnavailable: 1
  376. metrics:
  377. listen:
  378. port: 8080
  379. service:
  380. # -- Enable if you use another monitoring tool than Prometheus to scrape the metrics
  381. enabled: false
  382. # -- Metrics service port to scrape
  383. port: 8080
  384. # -- Additional service annotations
  385. annotations: {}
  386. readinessProbe:
  387. # -- Address for readiness probe
  388. address: ""
  389. # -- ReadinessProbe port for kubelet
  390. port: 8081
  391. ## -- Extra environment variables to add to container.
  392. extraEnv: []
  393. ## -- Map of extra arguments to pass to container.
  394. extraArgs: {}
  395. ## -- Extra volumes to pass to pod.
  396. extraVolumes: []
  397. ## -- Extra volumes to mount to the container.
  398. extraVolumeMounts: []
  399. # -- Annotations to add to Deployment
  400. deploymentAnnotations: {}
  401. # -- Annotations to add to Pod
  402. podAnnotations: {}
  403. podLabels: {}
  404. podSecurityContext:
  405. enabled: true
  406. # fsGroup: 2000
  407. securityContext:
  408. allowPrivilegeEscalation: false
  409. capabilities:
  410. drop:
  411. - ALL
  412. enabled: true
  413. readOnlyRootFilesystem: true
  414. runAsNonRoot: true
  415. runAsUser: 1000
  416. seccompProfile:
  417. type: RuntimeDefault
  418. resources: {}
  419. # requests:
  420. # cpu: 10m
  421. # memory: 32Mi
  422. # -- Specifies `dnsPolicy` to deployment
  423. dnsPolicy: ClusterFirst
  424. # -- Specifies `dnsOptions` to deployment
  425. dnsConfig: {}
  426. # -- Any extra pod spec on the deployment
  427. podSpecExtra: {}