blob: 1690e6f198c54d865516a773f42c9f6bcbe7154f [file] [log] [blame]
Sean Condond7d18342021-10-11 14:25:27 +01001# 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 Condond7d18342021-10-11 14:25:27 +01004
5apiVersion: v1
6kind: Secret
7metadata:
8 name: {{ template "aether-roc-websocket.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