feat: allow inline yaml config instead of string literal

This commit is contained in:
Christopher Homberger
2025-08-24 20:31:51 +02:00
parent 072b97470e
commit 0630164f91
2 changed files with 28 additions and 0 deletions

View File

@@ -10,6 +10,10 @@ metadata:
data:
config.yaml: |
{{- with .Values.statefulset.actRunner.config -}}
{{- if kindIs "string" . -}}
{{ . | nindent 4}}
{{- else -}}
{{ toYaml . | nindent 4}}
{{- end -}}
{{- end -}}
{{- end }}