blob: 957387158a80d3bb97d5a314b9ca96654bdf68dd [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright © 2018 Amdocs, Bell Canada, AT&T
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.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010015*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010016
17apiVersion: v1
18kind: ConfigMap
19metadata:
20 name: {{ include "common.fullname" . }}-log
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25 release: {{ include "common.release" . }}
26 heritage: {{ .Release.Service }}
27data:
28{{ tpl (.Files.Glob "config/logback.xml").AsConfig . | indent 2 }}
29---
30apiVersion: v1
31kind: ConfigMap
32metadata:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010033 name: {{ include "common.fullname" . }}-localhost-access-log
Sylvain Desbureaux70070412020-11-09 21:58:48 +010034 namespace: {{ include "common.namespace" . }}
35 labels:
36 app: {{ include "common.name" . }}
37 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
38 release: {{ include "common.release" . }}
39 heritage: {{ .Release.Service }}
40data:
41{{ tpl (.Files.Glob "config/localhost-access-logback.xml").AsConfig . | indent 2 }}
42---
43apiVersion: v1
44kind: ConfigMap
45metadata:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010046 name: {{ include "common.fullname" . }}-aaiconfig
Sylvain Desbureaux70070412020-11-09 21:58:48 +010047 namespace: {{ include "common.namespace" . }}
48 labels:
49 app: {{ include "common.name" . }}
50 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
51 release: {{ include "common.release" . }}
52 heritage: {{ .Release.Service }}
53data:
54{{ tpl (.Files.Glob "config/aaiconfig.properties").AsConfig . | indent 2 }}
55---
56apiVersion: v1
57kind: ConfigMap
58metadata:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010059 name: {{ include "common.fullname" . }}-springapp
Sylvain Desbureaux70070412020-11-09 21:58:48 +010060 namespace: {{ include "common.namespace" . }}
61 labels:
62 app: {{ include "common.name" . }}
63 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
64 release: {{ include "common.release" . }}
65 heritage: {{ .Release.Service }}
66data:
67{{ tpl (.Files.Glob "config/application.properties").AsConfig . | indent 2 }}
68---
69apiVersion: v1
70kind: ConfigMap
71metadata:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010072 name: {{ include "common.fullname" . }}-realm
Sylvain Desbureaux70070412020-11-09 21:58:48 +010073 namespace: {{ include "common.namespace" . }}
74 labels:
75 app: {{ include "common.name" . }}
76 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
77 release: {{ include "common.release" . }}
78 heritage: {{ .Release.Service }}
79data:
80{{ tpl (.Files.Glob "config/realm.properties").AsConfig . | indent 2 }}