Files
k8s-at-home-charts/charts/stable/otel-collector/templates/secret.yaml
2022-03-14 15:13:08 -04:00

19 lines
430 B
YAML

{{/*
The open telemetry config secret to be included.
*/}}
{{- if and .Values.configFile (not .Values.configFileSecret) }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ include "common.names.fullname" . }}-otelconfig
labels:
configsecret: otelcollector
{{- include "common.labels" $ | nindent 4 }}
stringData:
{{- with .Values.configFile }}
otelConfigFile: |-
{{- . | nindent 4}}
{{- end }}
{{- end -}}