Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit dd997da

Browse files
authored
Merge pull request #134 from gimlet-io/existing-secret-as-volume
Support existing secret as volume
2 parents 3c6f666 + bf8c6b8 commit dd997da

14 files changed

+63
-11
lines changed

charts/common/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ type: library
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.5.1
18+
version: 0.6.0

charts/common/templates/_volumesRef.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ volumes:
88
{{- else if .existingConfigMap }}
99
configMap:
1010
name: {{ .existingConfigMap }}
11+
{{- else if .existingSecret }}
12+
secret:
13+
secretName: {{ .existingSecret }}
1114
{{- else if .fileName }}
1215
configMap:
1316
name: {{ template "common.robustName" (printf "%s-%s" $.Release.Name .name) }}

charts/cron-job/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: common
33
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"

charts/cron-job/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ version: 0.69.0
1919

2020
dependencies:
2121
- name: common
22-
version: 0.5.1
22+
version: 0.6.0
2323
repository: file://../common
-3 KB
Binary file not shown.
3.01 KB
Binary file not shown.

charts/onechart/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: common
33
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"

charts/onechart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ version: 0.69.0
1919

2020
dependencies:
2121
- name: common
22-
version: 0.5.1
22+
version: 0.6.0
2323
repository: file://../common
-3 KB
Binary file not shown.
3.01 KB
Binary file not shown.

charts/onechart/tests/deployment_volumes_test.yaml

+18-2
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,30 @@ tests:
171171
- name: volume-name
172172
configMap:
173173
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
174190
- template: deployment.yaml
175191
documentIndex: 0
176192
equal:
177193
path: spec.template.spec.containers[0].volumeMounts
178194
value:
179195
- name: volume-name
180-
mountPath: /randomPath/app.conf
181-
subPath: app.conf
196+
mountPath: /randomPath/app.creds
197+
subPath: app.creds
182198
- it: Should use a configmap with custom value
183199
set:
184200
volumes:

charts/onechart/values.schema.json

+29
Original file line numberDiff line numberDiff line change
@@ -1106,6 +1106,35 @@
11061106
"fileContent",
11071107
"path"
11081108
]
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+
]
11091138
}
11101139
]
11111140
}

common-0.6.0.tgz

3.01 KB
Binary file not shown.

values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ volumes:
1414
- name: empty
1515
path: /deleteme2
1616
emptyDir: true
17+
- existingSecret: my-secret
18+
name: volume-name
19+
path: /randomPath/app.creds
20+
subPath: app.creds
1721

1822
vars:
1923
var1: value1

0 commit comments

Comments
 (0)