blob: 74daf41b7f16c85848ef4212918fbee458da4701 [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
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000017data:
18 LOG_PATH: {{ index .Values.logPath }}
19 APP: {{ index .Values.app }}
seshukm0df1f8e2020-08-17 21:45:49 +053020 ACTIVE_PROFILE: {{ include "so.helpers.profileProperty" (dict "condition" .Values.global.security.aaf.enabled "value1" "aaf" "value2" "basic")}}
Mike Elliottd32d36e2018-02-12 15:54:03 -050021kind: ConfigMap
22metadata:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000023 name: {{ include "common.fullname" . }}-configmap
Mike Elliottd32d36e2018-02-12 15:54:03 -050024 namespace: {{ include "common.namespace" . }}
vaibhavjayas2f9a6d22018-09-19 13:41:29 +000025 labels:
26 app: {{ include "common.name" . }}
27 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010028 release: {{ include "common.release" . }}
vaibhavjayas2f9a6d22018-09-19 13:41:29 +000029 heritage: {{ .Release.Service }}
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---
52apiVersion: v1
53kind: ConfigMap
54metadata:
55 name: {{ .Release.Name }}-so-filebeat-configmap
56 namespace: {{ include "common.namespace" . }}
57data:
58{{ tpl (.Files.Glob "resources/config/log/filebeat/filebeat.yml").AsConfig . | indent 2 }}