blob: 0a887646923c4f66f777f89253520ceebc900d76 [file] [log] [blame]
Sean Condona49cffd2021-10-01 12:38:45 +01001# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
Sean Condona49cffd2021-10-01 12:38:45 +01004
5apiVersion: v1
6kind: Secret
7metadata:
8 name: {{ template "aether-roc-gui.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/*.*" }}
16 {{ base $path }}: '{{ $root.Files.Get $path | b64enc }}'
17 {{ end }}
18type: Opaque