4e73195bc2
Change-Id: I2eb6ff2a599ee7bc479f9fc4955016b18902c879
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
{{/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- define "fluentd_main" }}
|
|
{{- $path := .Values.conf.fluentd.path}}
|
|
{{- range $name, $conf := .Values.conf.fluentd.conf }}
|
|
{{ printf "%s %s/%s.conf" "@include" $path $name | indent 4}}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.manifests.configmap_etc }}
|
|
{{ $envAll := .}}
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ printf "%s-%s" $envAll.Release.Name "fluentd-etc" | quote }}
|
|
annotations:
|
|
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
|
|
type: Opaque
|
|
stringData:
|
|
main.conf: |
|
|
{{- template "fluentd_main" . }}
|
|
data:
|
|
{{- range $name, $config := .Values.conf.fluentd.conf }}
|
|
{{- $filename := printf "%s.conf" $name}}
|
|
{{- include "helm-toolkit.snippets.values_template_renderer" (dict "envAll" $envAll "template" $config "key" $filename "format" "Secret") | indent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|