We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de74347 commit 48424d4Copy full SHA for 48424d4
1 file changed
tools/deployment/package-helm/templates/aws-config-secret.yaml
@@ -0,0 +1,15 @@
1
+{{- if .Values.clpConfig.aws_config }}
2
+apiVersion: "v1"
3
+kind: "Secret"
4
+metadata:
5
+ name: {{ include "clp.fullname" . }}-aws-config
6
+ labels:
7
+ {{- include "clp.labels" . | nindent 4 }}
8
+stringData:
9
+ {{- with .Values.clpConfig.aws_config.credentials }}
10
+ credentials: {{ . | quote }}
11
+ {{- end }}
12
+ {{- with .Values.clpConfig.aws_config.config }}
13
+ config: {{ . | quote }}
14
15
+{{- end }}
0 commit comments