blob: 3c61bf3bdc3c0d0319f915c6bb212cad420e9a04 [file] [log] [blame]
Jerry Flood4b4373d2019-04-30 15:30:04 -04001# Copyright © 2018 Amdocs, Bell Canada, AT&T
Krzysztof Opasiakd74a6592020-02-07 21:06:58 +01002# Copyright © 2020 Samsung Electronics
Jerry Flood4b4373d2019-04-30 15:30:04 -04003#
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
Krzysztof Opasiakd74a6592020-02-07 21:06:58 +010016{{ include "common.secret" . }}
17---
Jerry Flood4b4373d2019-04-30 15:30:04 -040018apiVersion: v1
19kind: Secret
20metadata:
21 name: {{ include "common.fullname" . }}-certs
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
Jerry Flood4b4373d2019-04-30 15:30:04 -040027 heritage: {{ .Release.Service }}
28type: Opaque
29data:
30{{ tpl (.Files.Glob "resources/certs/*").AsSecrets . | indent 2 }}