diff --git a/.github/workflows/publish-latest.yaml b/.github/workflows/publish-latest.yaml index d94df69..81cb153 100644 --- a/.github/workflows/publish-latest.yaml +++ b/.github/workflows/publish-latest.yaml @@ -5,7 +5,7 @@ on: branches: [master] types: [completed] env: - VERSION: v0.0.8 + VERSION: v0.0.9 jobs: deploy: runs-on: ubuntu-latest diff --git a/controllers/application_controller.go b/controllers/application_controller.go index 4bd0435..fa5907e 100644 --- a/controllers/application_controller.go +++ b/controllers/application_controller.go @@ -406,7 +406,7 @@ func (r *ApplicationReconciler) renderValues(application *v1.Application) error for key, value := range values { buf := new(bytes.Buffer) - tmpl, err := template.New("properties").Option("missingkey=error").Delims(leftDelimiter, rightDelimiter).Parse(value) + tmpl, err := template.New("properties").Option("missingkey=zero").Delims(leftDelimiter, rightDelimiter).Parse(value) if err != nil { return err }