blob: 97a8216da57fa7baed95b4723780933d3d982001 [file] [log] [blame]
Sean Condon670605a2021-12-13 12:58:20 +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 Condon670605a2021-12-13 12:58:20 +00004
5apiVersion: v1
6kind: Secret
7metadata:
8 name: {{ template "aether-enterprise-portal.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
Sean Condon36c82252022-03-16 09:49:40 +000019---
20apiVersion: v1
21kind: Secret
22metadata:
23 name: {{ template "aether-enterprise-portal.fullname" . }}-api
24 labels:
25 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
26 release: "{{ .Release.Name }}"
27 heritage: "{{ .Release.Service }}"
28data:
29 credentials: {{ printf "%s:%s" .Values.prometheus.credentials.username .Values.prometheus.credentials.password | b64enc | b64enc | quote }}
30type: Opaque