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