blob: c0e2559db9fe7a9f51bf315a156db376b99c7891 [file] [log] [blame]
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -04001# Copyright © 2018 Amdocs, AT&T
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
15apiVersion: v1
16kind: Secret
17metadata:
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +000018 name: {{ include "common.fullname" . }}-champ
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -040019 namespace: {{ include "common.namespace" . }}
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +000020type: Opaque
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -040021data:
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +000022{{ tpl (.Files.Glob "resources/config/appconfig/auth/*").AsSecrets . | indent 2 }}
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -040023---
24apiVersion: v1
25kind: Secret
26metadata:
27 name: {{ include "common.fullname" . }}-pass
28 namespace: {{ include "common.namespace" . }}
29 labels:
30 app: {{ include "common.name" . }}
31 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
32 release: {{ .Release.Name }}
33 heritage: {{ .Release.Service }}
34type: Opaque
35data:
36 KEY_STORE_PASSWORD: {{ .Values.config.keyStorePassword | b64enc | quote }}
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +000037 KEY_MANAGER_PASSWORD: {{ .Values.config.keyManagerPassword | b64enc | quote }}
38