-
Notifications
You must be signed in to change notification settings - Fork 44
/
values.yaml
40 lines (35 loc) · 1.47 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -- specify secret provider
provider: ~
# -- parameters for provider
parameters: {}
# -- template to generate parameters
# @default -- raw values from `parameters`
parametersTpl: "{{ .Values.parameters | toYaml }}"
# -- secretObjects for for SecretProviderClass
secretObjects: []
# -- template to generate secretObjects
# @default -- raw values from `secretObjects`
secretObjectsTpl: "{{ .Values.secretObjects | toYaml }}"
# Creates a dummy Deployment which uses the csiVolume. This is a hack, in case your Chart doesn't support defining extraVolumes
# DISCLAIMER: DO NOT USE THIS unless as last resort.
# Always try to use extraVolume Bindings inside your already existing Chart or application to make csi-secret-store manage the secret. And if there aren't any possibilities to mount additional volumes in your chart, try and create a pull-request upstream adding the feature to the chart.
dummyDeployment:
# -- enable the dummy deployment
enabled: false
image:
# -- Container image to deploy
repository: registry.k8s.io/pause
# -- sets the image tag to use
tag: 3.7
# -- When to pull the container imag
pullPolicy: IfNotPresent
# -- sets Pod annotations on the deployment
podAnnotations: {}
# -- sets a nodeSelector on the deployment
nodeSelector: {}
# -- sets affinity rules on the deployment
affinity: {}
# -- sets tolerations on the deployment
tolerations: []
# -- sets resources like limits and requests on the deployment
resources: {}