Files
deprecated-helm-charts/stable/sealed-secrets/values.yaml
T
Tino Reinhardt 0158b0f020 [stable/sealed-secrets] Have optional command args passed to controller (#17557)
* [stable/sealed-secrets] Have optional command args

This enables us to set command line arguments, like
  commandArgs:
    - "--key-renew-period"
    - "0"
or:
  $ helm ... --set commandArgs={--key-renew-period,0}

Signed-off-by: Tino Reinhardt <t@freeshell.org>

* [stable/sealed-secrets] Bump chart version (1.4.2)

Signed-off-by: Tino Reinhardt <t@freeshell.org>

* [stable/sealed-secrets] Bump app version (0.9.1)

Signed-off-by: Tino Reinhardt <t@freeshell.org>
2019-10-01 04:01:32 -07:00

36 lines
919 B
YAML

image:
repository: quay.io/bitnami/sealed-secrets-controller
tag: v0.9.1
pullPolicy: IfNotPresent
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
serviceAccount:
# serviceAccount.create: Whether to create a service account or not
create: true
# serviceAccount.name: The name of the service account to create or use
name: ""
rbac:
# rbac.create: `true` if rbac resources should be created
create: true
pspEnabled: false
# secretName: The name of the TLS secret containing the key used to encrypt secrets
secretName: "sealed-secrets-key"
crd:
# crd.create: `true` if the crd resources should be created
create: true
# crd.keep: `true` if the sealed secret CRD should be kept when the chart is deleted
keep: true
networkPolicy: false
securityContext:
# securityContext.runAsUser defines under which user the operator Pod and its containers/processes run.
runAsUser: 1001