blob: 372bf4dcca5f20ecedee928af081d527ca71d1ac [file] [log] [blame]
ramverma1a3b8ad2019-02-25 12:45:11 +00001# ============LICENSE_START=======================================================
a.sreekumar8dc8a902020-01-07 10:29:28 +00002# Copyright (C) 2019-2020 Nordix Foundation. All rights reserved.
ramverma1a3b8ad2019-02-25 12:45:11 +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.
15#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=========================================================
18
19apiVersion: v1
20kind: ConfigMap
21metadata:
22 name: {{ include "common.fullname" . }}-configmap
23 namespace: {{ include "common.namespace" . }}
jhh7ade5b82019-10-25 00:05:36 -050024{{- with .Files.Glob "resources/config/*store" }}
25binaryData:
26{{- range $path, $bytes := . }}
27 {{ base $path }}: {{ $.Files.Get $path | b64enc | quote }}
28{{- end }}
29{{- end }}
ramverma1a3b8ad2019-02-25 12:45:11 +000030data:
a.sreekumar8dc8a902020-01-07 10:29:28 +000031{{ tpl (.Files.Glob "resources/config/*.{json,xml}").AsConfig . | indent 2 }}