blob: b8a774acbe9f74039b734a892d982feff601bdab [file] [log] [blame]
Jakub Latusekfcf67842020-10-21 13:36:29 +02001{{/*
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00002# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00003# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +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.
Jakub Latusekfcf67842020-10-21 13:36:29 +020016*/}}
vaibhav_16dece04b2fe2018-03-22 09:07:12 +000017
mayankg2703a2608a22018-01-17 11:30:14 +000018#{{ if not .Values.disableClampClampMariadb }}
19apiVersion: v1
20kind: ConfigMap
21metadata:
mayankg2703a2608a22018-01-17 11:30:14 +000022 name: clamp-entrypoint-bulkload-configmap
vaibhav_16decf67e4182018-03-19 05:45:47 +000023 namespace: {{ include "common.namespace" . }}
vaibhavjayas6b5fe1c2018-09-19 13:49:40 +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" . }}
vaibhavjayas6b5fe1c2018-09-19 13:49:40 +000028 heritage: {{ .Release.Service }}
mayankg2703a2608a22018-01-17 11:30:14 +000029data:
JulienBe26df3202020-04-10 16:50:08 +020030{{ tpl (.Files.Glob "resources/config/mariadb/docker-entrypoint-initdb.d/*").AsConfig . | indent 2 }}
mayankg2703a2608a22018-01-17 11:30:14 +000031---
32apiVersion: v1
33kind: ConfigMap
34metadata:
35 name: clamp-mariadb-conf-configmap
vaibhav_16decf67e4182018-03-19 05:45:47 +000036 namespace: {{ include "common.namespace" . }}
vaibhavjayas6b5fe1c2018-09-19 13:49:40 +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" . }}
vaibhavjayas6b5fe1c2018-09-19 13:49:40 +000041 heritage: {{ .Release.Service }}
mayankg2703a2608a22018-01-17 11:30:14 +000042data:
43{{ tpl (.Files.Glob "resources/config/mariadb/conf.d/conf1/*").AsConfig . | indent 2 }}
Krzysztof Opasiak37a4e702020-05-25 22:22:33 +020044---
45apiVersion: v1
46kind: ConfigMap
47metadata:
48 name: {{ include "common.fullname" . }}
49 namespace: {{ include "common.namespace" . }}
50 labels:
51 app: {{ include "common.name" . }}
52 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
53 release: {{ include "common.release" . }}
54 heritage: {{ .Release.Service }}
55data:
56{{ tpl (.Files.Glob "resources/config/init/*").AsConfig . | indent 2 }}
mayankg2703a2608a22018-01-17 11:30:14 +000057#{{ end }}