blob: e1a0b1c660b934d2767dbf933564bf02447bd2d3 [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 }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010029---
30apiVersion: v1
31kind: ConfigMap
32metadata:
econwar378cf192019-01-08 16:19:59 +000033 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:
41 name: {{ include "common.fullname" . }}-dbc-drnodes
42 namespace: {{ include "common.namespace" . }}
43 labels:
44 app: {{ include "common.name" . }}
45 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010046 release: {{ include "common.release" . }}
dglFromAtt671f59b2019-03-13 15:50:40 +000047 heritage: {{ .Release.Service }}
48data:
49{{ tpl (.Files.Glob "resources/dr_nodes/*.json").AsConfig . | indent 2 }}
50---
51apiVersion: v1
52kind: ConfigMap
53metadata:
efiacor7b9a0872019-08-28 21:20:22 +000054 name: {{ include "common.fullname" . }}-dmaap-dr-node-filebeat-configmap
dglFromAtt671f59b2019-03-13 15:50:40 +000055 namespace: {{ include "common.namespace" . }}
56data:
57{{ tpl (.Files.Glob "resources/config/log/filebeat/filebeat.yml").AsConfig . | indent 2 }}