blob: 2a66c4fbec64b22ce733ca2a5224736decd9db33 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Pramod46bec902018-01-17 12:36:06 +000015apiVersion: v1
Priyanka5fdca022018-03-13 12:53:06 +000016kind: Secret
Pramod46bec902018-01-17 12:36:06 +000017metadata:
Priyanka5fdca022018-03-13 12:53:06 +000018 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
Priyanka5fdca022018-03-13 12:53:06 +000024 heritage: {{ .Release.Service }}
25type: Opaque
Pramod46bec902018-01-17 12:36:06 +000026data:
Priyanka5fdca022018-03-13 12:53:06 +000027 vid-password: {{ .Values.config.vidmysqlpassword | b64enc | quote }}
Bartosz Gardziejewski533bbdb2019-08-07 14:49:10 +020028---
29apiVersion: v1
30kind: Secret
31metadata:
32 name: {{ include "common.fullname" . }}-certs
33 namespace: {{ include "common.namespace" . }}
34 labels:
35 app: {{ include "common.name" . }}
36 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
Bartosz Gardziejewski533bbdb2019-08-07 14:49:10 +020038 heritage: {{ .Release.Service }}
39type: Opaque
40data:
41{{ tpl (.Files.Glob "resources/certs/*").AsSecrets . | indent 2 }}
Sylvain Desbureaux6383c442019-11-14 09:28:12 +010042---
43apiVersion: v1
44kind: Secret
45metadata:
46 name: {{ include "common.fullname" . }}-db
47 namespace: {{ include "common.namespace" . }}
48 labels:
49 app: {{ include "common.name" . }}
50 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010051 release: "{{ include "common.release" . }}"
Sylvain Desbureaux6383c442019-11-14 09:28:12 +010052 heritage: "{{ .Release.Service }}"
53type: Opaque
54data:
55 db-user-password: {{ index .Values "mariadb-galera" "config" "userPassword" | b64enc | quote }}
56 db-root-password: {{ index .Values "mariadb-galera" "config" "mariadbRootPassword" | b64enc | quote }}