Add secret template to common templates
[oom.git] / kubernetes / common / common / templates / _secret.yaml
1 {{/*
2 # Copyright © 2019 AT&T, Samsung Electronics
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16 {{- define "common.secret" -}}
17 {{- $global := . }}
18 {{- range $secret := .Values.secrets }}
19 ---
20 apiVersion: v1
21 kind: Secret
22 metadata:
23   name: {{ tpl $secret.name $global }}
24   namespace: {{ include "common.namespace" $global }}
25   labels:
26     app: {{ include "common.name" $global }}
27     chart: {{ $global.Chart.Name }}-{{ $global.Chart.Version | replace "+" "_" }}
28     release: {{ $global.Release.Name }}
29     heritage: {{ $global.Release.Service }}
30 type: Opaque
31 data:
32 {{- range $curFilePath := $secret.filePaths }}
33 {{ tpl ($global.Files.Glob $curFilePath).AsSecrets $global | indent 2 }}
34 {{- end }}
35 {{- if $secret.filePath }}
36 {{ tpl ($global.Files.Glob $secret.filePath).AsSecrets $global | indent 2 }}
37 {{- else if $secret.envs }}
38   {{- range $secretEnv := $secret.envs }}
39   {{ $secretEnv.name }}: {{ tpl $secretEnv.value $global }}
40   {{- end }}
41 {{- end }}
42 {{- end }}
43 {{- end -}}