File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed
charts/one-beyond-service Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.9.12
18
+ version : 0.9.13
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 37
37
ports :
38
38
{{- toYaml . | nindent 10 }}
39
39
{{- end }}
40
+ {{- if .Values.secretVolumes.enabled }}
41
+ volumeMounts :
42
+ {{- range .Values.secretVolumes.volumes }}
43
+ - name : {{ .name }}
44
+ mountPath : {{ .mountPath }}
45
+ readOnly : {{ .readOnly }}
46
+ {{- end }}
47
+ {{- end }}
40
48
{{- with .Values.env }}
41
49
env :
42
50
{{- toYaml . | nindent 10 }}
68
76
tolerations :
69
77
{{- toYaml . | nindent 8 }}
70
78
{{- end }}
79
+ {{- if .Values.secretVolumes.enabled }}
80
+ volumes :
81
+ {{- range .Values.secretVolumes.volumes }}
82
+ - name : {{ .name }}
83
+ secret :
84
+ secretName : {{ .secretName }}
85
+ items :
86
+ - key : {{ .secretKey }}
87
+ path : {{ .secretPath }}
88
+ {{- end }}
89
+ {{- end }}
Original file line number Diff line number Diff line change @@ -119,3 +119,13 @@ nodeSelector: {}
119
119
tolerations : []
120
120
121
121
affinity : {}
122
+
123
+ secretVolumes :
124
+ enabled : true
125
+ volumes :
126
+ - name : my-secret
127
+ secretName : my-secret
128
+ secretKey : my-secret-key
129
+ secretPath : my-secret-key
130
+ mountPath : /etc/my-secret
131
+ readOnly : true
You can’t perform that action at this time.
0 commit comments