blob: 1cd524423ec3620319bdffc658f1da13f632cfd4 [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 }}
econwar378cf192019-01-08 16:19:59 +000029---
30apiVersion: v1
31kind: ConfigMap
32metadata:
33 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---
Maciej Wereski9075b5c2021-11-04 14:01:26 +000038{{ include "common.log.configMap" . }}