Hi,
I sometimes need to define a YAML text node that contains text which will be treated as YAML (or JSON). For example helm
apiVersion: helm.cattle.io/v1
kind: HelmChartConfig
metadata:
name: some-config
spec:
valuesContent: |-
val1: 'this'
val1: 'that'
I'd rather use a separate file, but that file should also be a *.yml file (for syntax highlighting).
Currently !include some-config-values.yml would treat it as a YAML and inline it as an object node.
Would it be possible to specify an extra parameter !include txt some-config-values.yml?
Hi,
I sometimes need to define a YAML text node that contains text which will be treated as YAML (or JSON). For example helm
I'd rather use a separate file, but that file should also be a *.yml file (for syntax highlighting).
Currently
!include some-config-values.ymlwould treat it as a YAML and inline it as an object node.Would it be possible to specify an extra parameter
!include txt some-config-values.yml?