blob: acbcb63e4f331859ad387b0635c7322f93b83eab [file] [log] [blame]
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +01001{{/*
jmac065e2ce2018-03-29 01:18:02 +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.
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010015*/}}
jmac065e2ce2018-03-29 01:18:02 +000016
Maciej Wereski537d71e2021-11-03 13:31:44 +000017{{ include "common.log.configMap" . }}
jmac065e2ce2018-03-29 01:18:02 +000018---
19apiVersion: v1
20kind: ConfigMap
21metadata:
22 name: {{ include "common.fullname" . }}-log-configmap
23 namespace: {{ include "common.namespace" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000024 labels:
25 app: {{ include "common.name" . }}
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010027 release: {{ include "common.release" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000028 heritage: {{ .Release.Service }}
jmac065e2ce2018-03-29 01:18:02 +000029data:
30{{ tpl (.Files.Glob "resources/config/log/*").AsConfig . | indent 2 }}
31---
32apiVersion: v1
33kind: ConfigMap
34metadata:
jmaca68f4cb2018-05-10 22:44:19 +000035 name: {{ include "common.fullname" . }}-bin
jmac065e2ce2018-03-29 01:18:02 +000036 namespace: {{ include "common.namespace" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000037 labels:
38 app: {{ include "common.name" . }}
39 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010040 release: {{ include "common.release" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000041 heritage: {{ .Release.Service }}
jmac065e2ce2018-03-29 01:18:02 +000042data:
jmaca68f4cb2018-05-10 22:44:19 +000043{{ tpl (.Files.Glob "resources/config/bin/*").AsConfig . | indent 2 }}
jmac065e2ce2018-03-29 01:18:02 +000044---
45apiVersion: v1
46kind: ConfigMap
47metadata:
jmaca68f4cb2018-05-10 22:44:19 +000048 name: {{ include "common.fullname" . }}-properties
jmac065e2ce2018-03-29 01:18:02 +000049 namespace: {{ include "common.namespace" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000050 labels:
51 app: {{ include "common.name" . }}
52 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010053 release: {{ include "common.release" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000054 heritage: {{ .Release.Service }}
jmac065e2ce2018-03-29 01:18:02 +000055data:
jmaca68f4cb2018-05-10 22:44:19 +000056{{ tpl (.Files.Glob "resources/config/conf/*").AsConfig . | indent 2 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040057---
58apiVersion: v1
59kind: ConfigMap
60metadata:
61 name: {{ include "common.fullname" . }}-env
62 namespace: {{ include "common.namespace" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000063 labels:
64 app: {{ include "common.name" . }}
65 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010066 release: {{ include "common.release" . }}
toshrajbhardwaj6d1f8df2018-09-18 10:02:00 +000067 heritage: {{ .Release.Service }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040068data:
69{{ tpl (.Files.Get "resources/env.yaml") . | indent 2 }}