blob: 2401af40be85a96d6cc29603f3c9ad99b78e6606 [file] [log] [blame]
Scott Bakere35e6832022-01-10 15:48:08 -08001# 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
Scott Bakere35e6832022-01-10 15:48:08 -08004
5apiVersion: v1
6kind: ConfigMap
7metadata:
8 name: {{ template "sdcore-adapter.fullname" . }}-targetconfig
9 labels:
10 app: {{ template "sdcore-adapter.fullname" . }}
11 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
12 release: "{{ .Release.Name }}"
13 heritage: "{{ .Release.Service }}"
14data:
15 {{ $root := . }}
16 {{ range $path, $bytes := .Files.Glob "files/configs/*.json" }}
17 {{ base $path }}: '{{ $root.Files.Get $path }}'
18 {{ end }}
19
20---
21
22apiVersion: v1
23kind: ConfigMap
24metadata:
25 name: {{ template "sdcore-adapter.fullname" . }}-logconfig
26 labels:
27 app: {{ template "sdcore-adapter.fullname" . }}
28 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
29 release: "{{ .Release.Name }}"
30 heritage: "{{ .Release.Service }}"
31data:
32 logging.yaml: |-
33{{ toYaml .Values.logging | indent 4 }}