blob: a7064d7ce40d4f7aac71db377647c88f31eaa72d [file] [log] [blame]
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +01001{{/*
vaibhavjayasea9aee02018-08-31 06:22:26 +00002# Copyright © 2018 Amdocs, Bell Canada
Krzysztof Opasiakf5e74e52020-04-23 00:11:44 +02003# Copyright © 2020 Samsung Electronics
vaibhavjayasea9aee02018-08-31 06:22:26 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010016*/}}
vaibhavjayasea9aee02018-08-31 06:22:26 +000017
vitalied1e5876c2018-03-29 10:24:27 -050018{{- if .Values.externalConfig }}
19apiVersion: v1
20kind: ConfigMap
21metadata:
Jerry Floodf406ab82018-10-23 07:10:48 -040022 name: {{ include "common.fullname" . }}-external-config
vitalied1e5876c2018-03-29 10:24:27 -050023 namespace: {{ include "common.namespace" . }}
sushil masal08ef7092019-02-21 16:21:51 +053024 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" . }}
sushil masal08ef7092019-02-21 16:21:51 +053028 heritage: {{ .Release.Service }}
vitalied1e5876c2018-03-29 10:24:27 -050029data:
Jerry Floodf406ab82018-10-23 07:10:48 -040030 my_extra.cnf: |
31{{ .Values.externalConfig | indent 4 }}
Krzysztof Opasiakf5e74e52020-04-23 00:11:44 +020032{{- end }}
33---
34apiVersion: v1
35kind: ConfigMap
36metadata:
37 name: {{ include "common.fullname" . }}
38 namespace: {{ include "common.namespace" . }}
39 labels:
40 app: {{ include "common.name" . }}
41 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
42 release: {{ include "common.release" . }}
43 heritage: {{ .Release.Service }}
44data:
45{{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }}