blob: a253c512eb4fb3b46519751238609372ba8757d1 [file] [log] [blame]
Jakub Latusek67f4e8d2020-10-21 13:36:29 +02001{{/*
pramodad6382f2018-03-28 22:32:00 +00002# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00003# Modifications Copyright © 2018 AT&T
pramodad6382f2018-03-28 22:32:00 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020016*/}}
pramodad6382f2018-03-28 22:32:00 +000017apiVersion: v1
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000018kind: ConfigMap
pramodad6382f2018-03-28 22:32:00 +000019metadata:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000020 name: {{ include "common.fullname" . }}-msgrtrapi-prop-configmap
pramodad6382f2018-03-28 22:32:00 +000021 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 }}
pramodad6382f2018-03-28 22:32:00 +000027data:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000028{{ tpl (.Files.Glob "resources/config/dmaap/MsgRtrApi.properties").AsConfig . | indent 2 }}
29---
30apiVersion: v1
31kind: ConfigMap
32metadata:
33 name: {{ include "common.fullname" . }}-cadi-prop-configmap
34 namespace: {{ include "common.namespace" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000035 labels:
36 app: {{ include "common.name" . }}
37 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010038 release: {{ include "common.release" . }}
Prateekinlinux30dcfe22018-09-14 02:47:04 +000039 heritage: {{ .Release.Service }}
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000040data:
41{{ tpl (.Files.Glob "resources/config/dmaap/cadi.properties").AsConfig . | indent 2 }}
dglFromAtt671f59b2019-03-13 15:50:40 +000042---
su622bfdce6592019-08-08 00:28:29 -040043
44apiVersion: v1
45kind: ConfigMap
46metadata:
47 name: {{ include "common.fullname" . }}-logback-xml-configmap
48 namespace: {{ include "common.namespace" . }}
49 labels:
50 app: {{ include "common.name" . }}
51 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010052 release: {{ include "common.release" . }}
su622bfdce6592019-08-08 00:28:29 -040053 heritage: {{ .Release.Service }}
54data:
55{{ tpl (.Files.Glob "resources/config/dmaap/logback.xml").AsConfig . | indent 2 }}
56---
57
dglFromAtt671f59b2019-03-13 15:50:40 +000058apiVersion: v1
59kind: ConfigMap
60metadata:
61 name: {{ include "common.fullname" . }}-dbc-mrclusters
62 namespace: {{ include "common.namespace" . }}
63 labels:
64 app: {{ include "common.name" . }}
65 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010066 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000067 heritage: {{ .Release.Service }}
68data:
69{{ tpl (.Files.Glob "resources/mr_clusters/*.json").AsConfig . | indent 2 }}
70---
71apiVersion: v1
72kind: ConfigMap
73metadata:
74 name: {{ include "common.fullname" . }}-dbc-topics
75 namespace: {{ include "common.namespace" . }}
76 labels:
77 app: {{ include "common.name" . }}
78 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010079 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000080 heritage: {{ .Release.Service }}
81data:
82{{ tpl (.Files.Glob "resources/topics/*.json").AsConfig . | indent 2 }}
su622ba3865652020-03-25 17:26:51 -040083---
84{{- if .Values.prometheus.jmx.enabled }}
85apiVersion: v1
86kind: ConfigMap
87metadata:
88 name: {{ include "common.fullname" . }}-prometheus-configmap
89 namespace: {{ include "common.namespace" . }}
90 labels:
91 app: {{ include "common.name" . }}
92 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
93 release: {{ include "common.release" . }}
94 heritage: {{ .Release.Service }}
95data:
96{{ tpl (.Files.Glob "resources/config/dmaap/jmx-mrservice-prometheus.yml").AsConfig . | indent 2 }}
97---
98{{ end }}
99
dglFromAtt671f59b2019-03-13 15:50:40 +0000100