Im using Helm.
I have a settings.json file containing the following configuration:
"CustomSetting": {
"ArrayOfArrays": {{ .Values.customSetting.arrayOfArrays | toJson }}
}
And my values.yaml file contains the following values:
customSetting:
arrayOfArrays: [
[ "someValue1", "someValue2" ],
[ "anotherValue3", "anotherValue4" ]
]
My problem is that I cannot run my chart with this setup since I get the following error:
unable to parse YAML: error converting YAML to JSON: yaml: line X: did not find expected key
How do I get this nested array in my settings.json file?