This repository was archived by the owner on Apr 1, 2025. It is now read-only.
File tree 14 files changed +63
-11
lines changed
14 files changed +63
-11
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ type: library
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.5.1
18
+ version : 0.6.0
Original file line number Diff line number Diff line change 8
8
{{- else if .existingConfigMap }}
9
9
configMap :
10
10
name : {{ .existingConfigMap }}
11
+ {{- else if .existingSecret }}
12
+ secret :
13
+ secretName : {{ .existingSecret }}
11
14
{{- else if .fileName }}
12
15
configMap :
13
16
name : {{ template "common.robustName" (printf "%s-%s" $.Release.Name .name) }}
Original file line number Diff line number Diff line change 1
1
dependencies:
2
2
- name: common
3
3
repository: file://../common
4
- version: 0.5.1
5
- digest: sha256:ca23e74d63ca4339e8720d1af3709107d1d5831c5f9e78d9ae88107a2590c826
6
- generated: "2024-02-01T13:22:33.441381+01 :00"
4
+ version: 0.6.0
5
+ digest: sha256:b3a62bdb9852049c98123eeb95e79ceb12aaab1aab1a0e2f2d8437aa6d1a9e90
6
+ generated: "2024-06-21T08:14:31.489421+02 :00"
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ version: 0.69.0
19
19
20
20
dependencies :
21
21
- name : common
22
- version : 0.5.1
22
+ version : 0.6.0
23
23
repository : file://../common
Original file line number Diff line number Diff line change 1
1
dependencies:
2
2
- name: common
3
3
repository: file://../common
4
- version: 0.5.1
5
- digest: sha256:ca23e74d63ca4339e8720d1af3709107d1d5831c5f9e78d9ae88107a2590c826
6
- generated: "2024-02-01T13:22:32.899733+01 :00"
4
+ version: 0.6.0
5
+ digest: sha256:b3a62bdb9852049c98123eeb95e79ceb12aaab1aab1a0e2f2d8437aa6d1a9e90
6
+ generated: "2024-06-21T08:03:57.319388+02 :00"
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ version: 0.69.0
19
19
20
20
dependencies :
21
21
- name : common
22
- version : 0.5.1
22
+ version : 0.6.0
23
23
repository : file://../common
Original file line number Diff line number Diff line change @@ -171,14 +171,30 @@ tests:
171
171
- name : volume-name
172
172
configMap :
173
173
name : my-configmap
174
+ - it : Should use an existing secret as volume
175
+ set :
176
+ volumes :
177
+ - existingSecret : my-secret
178
+ name : volume-name
179
+ path : /randomPath/app.creds
180
+ subPath : app.creds
181
+ asserts :
182
+ - template : deployment.yaml
183
+ documentIndex : 0
184
+ equal :
185
+ path : spec.template.spec.volumes
186
+ value :
187
+ - name : volume-name
188
+ secret :
189
+ secretName : my-secret
174
190
- template : deployment.yaml
175
191
documentIndex : 0
176
192
equal :
177
193
path : spec.template.spec.containers[0].volumeMounts
178
194
value :
179
195
- name : volume-name
180
- mountPath : /randomPath/app.conf
181
- subPath : app.conf
196
+ mountPath : /randomPath/app.creds
197
+ subPath : app.creds
182
198
- it : Should use a configmap with custom value
183
199
set :
184
200
volumes :
Original file line number Diff line number Diff line change 1106
1106
" fileContent" ,
1107
1107
" path"
1108
1108
]
1109
+ },
1110
+ {
1111
+ "id" : " #/properties/volumes/oneOf/6" ,
1112
+ "title" : " Mount an existing secret as a file" ,
1113
+ "type" : " object" ,
1114
+ "properties" : {
1115
+ "existingSecret" : {
1116
+ "type" : " string" ,
1117
+ "title" : " Name" ,
1118
+ "description" : " The name of the secret to mount" ,
1119
+ "default" : " data"
1120
+ },
1121
+ "path" : {
1122
+ "type" : " string" ,
1123
+ "title" : " Path" ,
1124
+ "description" : " The mount path inside the container" ,
1125
+ "default" : " /data/dummy.conf"
1126
+ },
1127
+ "subPath" : {
1128
+ "type" : " string" ,
1129
+ "title" : " subPath" ,
1130
+ "description" : " Mount single file" ,
1131
+ "default" : " dummy.conf"
1132
+ }
1133
+ },
1134
+ "required" : [
1135
+ " existingSecret" ,
1136
+ " path"
1137
+ ]
1109
1138
}
1110
1139
]
1111
1140
}
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ volumes:
14
14
- name : empty
15
15
path : /deleteme2
16
16
emptyDir : true
17
+ - existingSecret : my-secret
18
+ name : volume-name
19
+ path : /randomPath/app.creds
20
+ subPath : app.creds
17
21
18
22
vars :
19
23
var1 : value1
You can’t perform that action at this time.
0 commit comments