blob: 0dd75f3169f2925604865ffa6f5e77b8361af37d [file] [log] [blame]
Jakub Latusek67f4e8d2020-10-21 13:36:29 +02001{{/*
dglFromAtt671f59b2019-03-13 15:50:40 +00002# Copyright © 2018 AT&T Intellectual Property. All rights reserved.
3# Modifications Copyright © 2018 Amdocs,Bell Canada
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.
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020016*/}}
dglFromAtt671f59b2019-03-13 15:50:40 +000017
18apiVersion: v1
19kind: ConfigMap
20metadata:
efiacor2123fec2022-12-09 13:40:55 +000021 name: {{ include "common.fullname" . }}-log
22 namespace: {{ include "common.namespace" . }}
23data:
24{{ tpl (.Files.Glob "resources/log/logback.xml").AsConfig . | indent 2 }}
25---
26apiVersion: v1
27kind: ConfigMap
28metadata:
dglFromAtt671f59b2019-03-13 15:50:40 +000029 name: {{ include "common.fullname" . }}-config
30 namespace: {{ include "common.namespace" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000031data:
32{{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }}
33---
34apiVersion: v1
35kind: ConfigMap
36metadata:
37 name: {{ include "common.fullname" . }}-dbc-dmaap
38 namespace: {{ include "common.namespace" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000039data:
40{{ tpl (.Files.Glob "resources/dmaap/*.json").AsConfig . | indent 2 }}
41---
42apiVersion: v1
43kind: ConfigMap
44metadata:
45 name: {{ include "common.fullname" . }}-dbc-dcaelocations
46 namespace: {{ include "common.namespace" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000047data:
48{{ tpl (.Files.Glob "resources/dcaeLocations/*.json").AsConfig . | indent 2 }}
efiacorc75eacb2020-04-24 14:29:17 +010049---
50apiVersion: v1
51kind: ConfigMap
52metadata:
53 name: {{ include "common.fullname" . }}-dr-nodes
54 namespace: {{ include "common.namespace" . }}
efiacorc75eacb2020-04-24 14:29:17 +010055data:
56{{ tpl (.Files.Glob "resources/dr_nodes/*.json").AsConfig . | indent 2 }}
57---
58apiVersion: v1
59kind: ConfigMap
60metadata:
61 name: {{ include "common.fullname" . }}-feeds
62 namespace: {{ include "common.namespace" . }}
efiacorc75eacb2020-04-24 14:29:17 +010063data:
64{{ tpl (.Files.Glob "resources/feeds/*.json").AsConfig . | indent 2 }}
65---
66apiVersion: v1
67kind: ConfigMap
68metadata:
69 name: {{ include "common.fullname" . }}-mr-clusters
70 namespace: {{ include "common.namespace" . }}
efiacorc75eacb2020-04-24 14:29:17 +010071data:
72{{ tpl (.Files.Glob "resources/mr_clusters/*.json").AsConfig . | indent 2 }}
73---
74apiVersion: v1
75kind: ConfigMap
76metadata:
77 name: {{ include "common.fullname" . }}-topics
78 namespace: {{ include "common.namespace" . }}
efiacorc75eacb2020-04-24 14:29:17 +010079data:
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020080{{ tpl (.Files.Glob "resources/topics/*.json").AsConfig . | indent 2 }}