blob: 9031cce42324c2eb1153e8ed88d7bff5630e52e1 [file] [log] [blame]
Jakub Latusek67f4e8d2020-10-21 13:36:29 +02001{{/*
Fiachra Corcoranbe966552018-08-07 16:58:45 +01002# Copyright © 2017 Amdocs, Bell Canada
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.
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020015*/}}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010016
17apiVersion: v1
18kind: ConfigMap
19metadata:
efiacoreabb6522019-04-08 09:46:09 +000020 name: {{ include "common.fullname" . }}-configmap
Fiachra Corcoranbe966552018-08-07 16:58:45 +010021 namespace: {{ include "common.namespace" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000022 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000026 heritage: {{ .Release.Service }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010027data:
efiacoreabb6522019-04-08 09:46:09 +000028{{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }}
econwar378cf192019-01-08 16:19:59 +000029---
30apiVersion: v1
31kind: ConfigMap
32metadata:
33 name: {{ include "common.fullname" . }}-log
34 namespace: {{ include "common.namespace" . }}
35data:
36{{ tpl (.Files.Glob "resources/config/logback.xml").AsConfig . | indent 2 }}
dglFromAtt671f59b2019-03-13 15:50:40 +000037---
Maciej Wereski9075b5c2021-11-04 14:01:26 +000038{{ include "common.log.configMap" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000039---
40apiVersion: v1
41kind: ConfigMap
42metadata:
43 name: {{ include "common.fullname" . }}-dbc-feeds
44 namespace: {{ include "common.namespace" . }}
45 labels:
46 app: {{ include "common.name" . }}
47 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010048 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000049 heritage: {{ .Release.Service }}
50data:
51{{ tpl (.Files.Glob "resources/feeds/*.json").AsConfig . | indent 2 }}
52---
53apiVersion: v1
54kind: ConfigMap
55metadata:
56 name: {{ include "common.fullname" . }}-dbc-drpubs
57 namespace: {{ include "common.namespace" . }}
58 labels:
59 app: {{ include "common.name" . }}
60 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010061 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000062 heritage: {{ .Release.Service }}
63data:
64{{ tpl (.Files.Glob "resources/dr_pubs/*.json").AsConfig . | indent 2 }}
65---
66apiVersion: v1
67kind: ConfigMap
68metadata:
69 name: {{ include "common.fullname" . }}-dbc-drsubs
70 namespace: {{ include "common.namespace" . }}
71 labels:
72 app: {{ include "common.name" . }}
73 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010074 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000075 heritage: {{ .Release.Service }}
76data:
77{{ tpl (.Files.Glob "resources/dr_subs/*.json").AsConfig . | indent 2 }}