We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1d886 commit f933889Copy full SHA for f933889
.gitignore
@@ -0,0 +1 @@
1
+/.idea/
charts/tiphys/templates/app.yaml
@@ -149,6 +149,23 @@ spec:
149
{{- with $app.service.healthChecks }}
150
{{ toYaml . | nindent 10 }}
151
{{- end }}
152
+ volumeMounts:
153
+ - name: secrets
154
+ mountPath: "/secrets"
155
+ readOnly: true
156
157
+ mountPath: "/app-secrets"
158
159
+ {{- with $app.service.volumeMounts }}
160
+ {{- toYaml . | nindent 12 }}
161
+ {{- end }}
162
+ volumes:
163
164
+ secret:
165
+ secretName: {{ template "opszero.fullname" $ }}-{{ $app.name }}
166
+ {{- with $app.service.volumes }}
167
+ {{- toYaml . | nindent 8 }}
168
169
170
{{- if $app.secrets }}
171
---
0 commit comments