Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / dmaap / components / message-router / templates / configmap.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
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.
16 */}}
17 apiVersion: v1
18 kind: ConfigMap
19 metadata:
20   name: {{ include "common.fullname" . }}-msgrtrapi-prop-configmap
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/dmaap/MsgRtrApi.properties").AsConfig . | indent 2 }}
29 ---
30 apiVersion: v1
31 kind: ConfigMap
32 metadata:
33   name: {{ include "common.fullname" . }}-cadi-prop-configmap
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/dmaap/cadi.properties").AsConfig . | indent 2 }}
42 ---
43
44 apiVersion: v1
45 kind: ConfigMap
46 metadata:
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 "+" "_" }}
52     release: {{ include "common.release" . }}
53     heritage: {{ .Release.Service }}
54 data:
55 {{ tpl (.Files.Glob "resources/config/dmaap/logback.xml").AsConfig . | indent 2 }}
56 ---
57
58 apiVersion: v1
59 kind: ConfigMap
60 metadata:
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 "+" "_" }}
66     release: {{ include "common.release" . }}
67     heritage: {{ .Release.Service }}
68 data:
69 {{ tpl (.Files.Glob "resources/mr_clusters/*.json").AsConfig . | indent 2 }}
70 ---
71 apiVersion: v1
72 kind: ConfigMap
73 metadata:
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 "+" "_" }}
79     release: {{ include "common.release" . }}
80     heritage: {{ .Release.Service }}
81 data:
82 {{ tpl (.Files.Glob "resources/topics/*.json").AsConfig . | indent 2 }}
83 ---
84 {{- if  .Values.prometheus.jmx.enabled }}
85 apiVersion: v1
86 kind: ConfigMap
87 metadata:
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 }}
95 data:
96 {{ tpl (.Files.Glob "resources/config/dmaap/jmx-mrservice-prometheus.yml").AsConfig . | indent 2 }}
97 ---
98 {{ end }}
99
100