blob: f981d6f7a646c62998bfeedd2eba3feb892abb24 [file] [log] [blame]
pramodad6382f2018-03-28 22:32:00 +00001# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 AT&T
pramodad6382f2018-03-28 22:32:00 +00003#
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.
pramodad6382f2018-03-28 22:32:00 +000015apiVersion: v1
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000016kind: ConfigMap
pramodad6382f2018-03-28 22:32:00 +000017metadata:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000018 name: {{ include "common.fullname" . }}-msgrtrapi-prop-configmap
pramodad6382f2018-03-28 22:32:00 +000019 namespace: {{ include "common.namespace" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000020 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000024 heritage: {{ .Release.Service }}
pramodad6382f2018-03-28 22:32:00 +000025data:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000026{{ tpl (.Files.Glob "resources/config/dmaap/MsgRtrApi.properties").AsConfig . | indent 2 }}
27---
28apiVersion: v1
29kind: ConfigMap
30metadata:
31 name: {{ include "common.fullname" . }}-cadi-prop-configmap
32 namespace: {{ include "common.namespace" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000033 labels:
34 app: {{ include "common.name" . }}
35 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000037 heritage: {{ .Release.Service }}
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000038data:
39{{ tpl (.Files.Glob "resources/config/dmaap/cadi.properties").AsConfig . | indent 2 }}
dglFromAtt671f59b2019-03-13 15:50:40 +000040---
su622bfdce6592019-08-08 00:28:29 -040041
42apiVersion: v1
43kind: ConfigMap
44metadata:
45 name: {{ include "common.fullname" . }}-logback-xml-configmap
46 namespace: {{ include "common.namespace" . }}
47 labels:
48 app: {{ include "common.name" . }}
49 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010050 release: {{ include "common.release" . }}
su622bfdce6592019-08-08 00:28:29 -040051 heritage: {{ .Release.Service }}
52data:
53{{ tpl (.Files.Glob "resources/config/dmaap/logback.xml").AsConfig . | indent 2 }}
54---
55
dglFromAtt671f59b2019-03-13 15:50:40 +000056apiVersion: v1
57kind: ConfigMap
58metadata:
59 name: {{ include "common.fullname" . }}-dbc-mrclusters
60 namespace: {{ include "common.namespace" . }}
61 labels:
62 app: {{ include "common.name" . }}
63 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010064 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000065 heritage: {{ .Release.Service }}
66data:
67{{ tpl (.Files.Glob "resources/mr_clusters/*.json").AsConfig . | indent 2 }}
68---
69apiVersion: v1
70kind: ConfigMap
71metadata:
72 name: {{ include "common.fullname" . }}-dbc-topics
73 namespace: {{ include "common.namespace" . }}
74 labels:
75 app: {{ include "common.name" . }}
76 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010077 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000078 heritage: {{ .Release.Service }}
79data:
80{{ tpl (.Files.Glob "resources/topics/*.json").AsConfig . | indent 2 }}
su622ba3865652020-03-25 17:26:51 -040081---
82{{- if .Values.prometheus.jmx.enabled }}
83apiVersion: v1
84kind: ConfigMap
85metadata:
86 name: {{ include "common.fullname" . }}-prometheus-configmap
87 namespace: {{ include "common.namespace" . }}
88 labels:
89 app: {{ include "common.name" . }}
90 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
91 release: {{ include "common.release" . }}
92 heritage: {{ .Release.Service }}
93data:
94{{ tpl (.Files.Glob "resources/config/dmaap/jmx-mrservice-prometheus.yml").AsConfig . | indent 2 }}
95---
96{{ end }}
97
dglFromAtt671f59b2019-03-13 15:50:40 +000098