Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-order template keywords #389

Merged
merged 2 commits into from
Oct 9, 2024
Merged

Commits on Sep 16, 2024

  1. Fixed issue 388

    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)
    
    Signed-off-by: Tobias Ward <[email protected]>
    MoonMoon2 committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    8ce9160 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. Configuration menu
    Copy the full SHA
    50f0655 View commit details
    Browse the repository at this point in the history