blob: 052a9853870be6f3dd00c309872dafcb103a827f [file] [log] [blame]
Jakub Latusek44f0fdd2020-10-21 13:36:29 +02001{{/*
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00002# Copyright © 2018 AT&T USA
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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 Latusek44f0fdd2020-10-21 13:36:29 +020015*/}}
Mike Elliottd32d36e2018-02-12 15:54:03 -050016apiVersion: v1
17kind: ConfigMap
18metadata:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000019 name: {{ include "common.fullname" . }}-configmap
Mike Elliottd32d36e2018-02-12 15:54:03 -050020 namespace: {{ include "common.namespace" . }}
vaibhavjayas2f9a6d22018-09-19 13:41:29 +000021 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
vaibhavjayas2f9a6d22018-09-19 13:41:29 +000025 heritage: {{ .Release.Service }}
Andreas Geisslerad61ccf2023-02-23 09:17:36 +010026data:
27 LOG_PATH: {{ index .Values.logPath }}
28 APP: {{ index .Values.app }}
29 ACTIVE_PROFILE: "basic"
Mike Elliottd32d36e2018-02-12 15:54:03 -050030---
31apiVersion: v1
32kind: ConfigMap
33metadata:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000034 name: {{ include "common.fullname" . }}-app-configmap
Mike Elliottd32d36e2018-02-12 15:54:03 -050035 namespace: {{ include "common.namespace" . }}
vaibhavjayas2f9a6d22018-09-19 13:41:29 +000036 labels:
37 app: {{ include "common.name" . }}
38 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010039 release: {{ include "common.release" . }}
vaibhavjayas2f9a6d22018-09-19 13:41:29 +000040 heritage: {{ .Release.Service }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050041data:
Ramesh Parthasarathy1ceefda2018-09-14 21:22:43 +000042{{ tpl (.Files.Glob "resources/config/overrides/*").AsConfig . | indent 2 }}
sunilb0a97ab22020-02-25 10:18:48 +053043---
44apiVersion: v1
45kind: ConfigMap
46metadata:
47 name: {{ include "common.fullname" . }}-log
48 namespace: {{ include "common.namespace" . }}
49data:
50{{ tpl (.Files.Glob "resources/config/log/filebeat/filebeat.yml").AsConfig . | indent 2 }}
51---
Maciej Wereskidf9ba222021-11-05 14:38:18 +000052{{ include "common.log.configMap" . }}