blob: a7d1aa728ab0afb9825beb84da7d03ef581b65bb [file] [log] [blame]
Sean Condon25c7bf52021-11-06 11:53:59 +00001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
Sean Condon25c7bf52021-11-06 11:53:59 +00004
5apiVersion: v1
6kind: Secret
7metadata:
8 name: {{ template "demo-exporter.fullname" . }}-secret
9 labels:
10 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
11 release: "{{ .Release.Name }}"
12 heritage: "{{ .Release.Service }}"
13data:
14 {{ $root := . }}
15 {{ range $path, $bytes := .Files.Glob "files/certs/tls.*" }}
16 {{ base $path }}: '{{ $root.Files.Get $path | b64enc }}'
17 {{ end }}
18type: Opaque