blob: 28cf73093012902fecbb6dca8b95d6c420367629 [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" . }}
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 "resources/config/*").AsConfig . | indent 2 }}
29---
30apiVersion: v1
31kind: ConfigMap
32metadata:
33 name: {{ include "common.fullname" . }}-service-log
34 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 "resources/config/log/logback.xml").AsConfig . | indent 2 }}
42
43{{ if .Values.global.installSidecarSecurity }}
44---
45apiVersion: v1
46kind: ConfigMap
47metadata:
48 name: {{ include "common.fullname" . }}-fproxy-config
49 namespace: {{ include "common.namespace" . }}
50data:
51{{ tpl (.Files.Glob "resources/fproxy/config/*").AsConfig . | indent 2 }}
52---
53apiVersion: v1
54kind: ConfigMap
55metadata:
56 name: {{ include "common.fullname" . }}-fproxy-log-config
57 namespace: {{ include "common.namespace" . }}
58data:
59{{ tpl (.Files.Glob "resources/fproxy/config/logback-spring.xml").AsConfig . | indent 2 }}
60---
61apiVersion: v1
62kind: ConfigMap
63metadata:
64 name: {{ include "common.fullname" . }}-rproxy-config
65 namespace: {{ include "common.namespace" . }}
66data:
67{{ tpl (.Files.Glob "resources/rproxy/config/*").AsConfig . | indent 2 }}
68---
69apiVersion: v1
70kind: ConfigMap
71metadata:
72 name: {{ include "common.fullname" . }}-rproxy-log-config
73 namespace: {{ include "common.namespace" . }}
74data:
75{{ tpl (.Files.Glob "resources/rproxy/config/logback-spring.xml").AsConfig . | indent 2 }}
76---
77apiVersion: v1
78kind: ConfigMap
79metadata:
80 name: {{ include "common.fullname" . }}-rproxy-uri-auth-config
81 namespace: {{ include "common.namespace" . }}
82data:
83{{ tpl (.Files.Glob "resources/rproxy/config/auth/uri-authorization.json").AsConfig . | indent 2 }}
84{{ end }}
85