blob: 1a0ca9f759f155bd59a535e5716f2a4096a93cdd [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---
38apiVersion: v1
39kind: ConfigMap
40metadata:
efiacor7b9a0872019-08-28 21:20:22 +000041 name: {{ include "common.fullname" . }}-dmaap-dr-prov-filebeat-configmap
dglFromAtt671f59b2019-03-13 15:50:40 +000042 namespace: {{ include "common.namespace" . }}
43data:
44{{ tpl (.Files.Glob "resources/config/log/filebeat/filebeat.yml").AsConfig . | indent 2 }}
45---
46apiVersion: v1
47kind: ConfigMap
48metadata:
49 name: {{ include "common.fullname" . }}-dbc-feeds
50 namespace: {{ include "common.namespace" . }}
51 labels:
52 app: {{ include "common.name" . }}
53 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010054 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000055 heritage: {{ .Release.Service }}
56data:
57{{ tpl (.Files.Glob "resources/feeds/*.json").AsConfig . | indent 2 }}
58---
59apiVersion: v1
60kind: ConfigMap
61metadata:
62 name: {{ include "common.fullname" . }}-dbc-drpubs
63 namespace: {{ include "common.namespace" . }}
64 labels:
65 app: {{ include "common.name" . }}
66 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010067 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000068 heritage: {{ .Release.Service }}
69data:
70{{ tpl (.Files.Glob "resources/dr_pubs/*.json").AsConfig . | indent 2 }}
71---
72apiVersion: v1
73kind: ConfigMap
74metadata:
75 name: {{ include "common.fullname" . }}-dbc-drsubs
76 namespace: {{ include "common.namespace" . }}
77 labels:
78 app: {{ include "common.name" . }}
79 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010080 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000081 heritage: {{ .Release.Service }}
82data:
83{{ tpl (.Files.Glob "resources/dr_subs/*.json").AsConfig . | indent 2 }}