charts icon indicating copy to clipboard operation
charts copied to clipboard

Re-order template keywords

Open MoonMoon2 opened this issue 1 year ago • 0 comments

Issue was because YAML output for this section of the cluster.yaml was

parameters: parameters: {} pg_hba: [] pg_indent: []

Whereas it should be

parameters: {} pg_hba: {} pg_indent: {}

but parameters is a helm keyword so it would consume all the keywords in the parameters step before pg_hba or pg_indent were called.

This simple re-ordering should fix the issue (and has for me in testing)

MoonMoon2 avatar Sep 16 '24 19:09 MoonMoon2