blob: b1509a95adcc0a01dafaeec81ec67a4d3f6b61e3 [file] [log] [blame]
Jakub Latusekd9c241b2020-10-21 13:36:30 +02001{{/*
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00002# 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 Latusekd9c241b2020-10-21 13:36:30 +020015*/}}
vaibhav_16dece04b2fe2018-03-22 09:07:12 +000016
Pramod46bec902018-01-17 12:36:06 +000017apiVersion: v1
18kind: ConfigMap
19metadata:
Priyanka5fdca022018-03-13 12:53:06 +000020 name: {{ include "common.fullname" . }}-log-configmap
21 namespace: {{ include "common.namespace" . }}
sushil masal08ef7092019-02-21 16:21:51 +053022 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" . }}
sushil masal08ef7092019-02-21 16:21:51 +053026 heritage: {{ .Release.Service }}
Pramod46bec902018-01-17 12:36:06 +000027data:
28{{ tpl (.Files.Glob "resources/config/log/vid/*").AsConfig . | indent 2 }}
29---
30apiVersion: v1
31kind: ConfigMap
32metadata:
Priyanka5fdca022018-03-13 12:53:06 +000033 name: {{ include "common.fullname" . }}-filebeat-configmap
34 namespace: {{ include "common.namespace" . }}
sushil masal08ef7092019-02-21 16:21:51 +053035 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" . }}
sushil masal08ef7092019-02-21 16:21:51 +053039 heritage: {{ .Release.Service }}
Pramod46bec902018-01-17 12:36:06 +000040data:
41{{ tpl (.Files.Glob "resources/config/log/filebeat/*").AsConfig . | indent 2 }}
Mandeep Khinda561a91c2018-08-23 14:08:52 +000042---
43apiVersion: v1
44kind: ConfigMap
45metadata:
46 name: {{ include "common.fullname" . }}
47 namespace: {{ include "common.namespace" . }}
48 labels:
49 app: {{ include "common.name" . }}
50 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010051 release: {{ include "common.release" . }}
Mandeep Khinda561a91c2018-08-23 14:08:52 +000052 heritage: {{ .Release.Service }}
53data:
54{{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }}