Skip to content

Commit

Permalink
fix: boolean to string conversion in helm chart (#67)
Browse files Browse the repository at this point in the history
* fix: boolean to string conversion in helm chart

* Update Chart.yaml

---------

Co-authored-by: MLenterman <[email protected]>
  • Loading branch information
philipsens and MLenterman authored Mar 15, 2023
1 parent f39b58a commit a5f7fac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions charts/zaakbrug/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: 1.8.0
appVersion: 1.9.1
description: Install ZaakBrug (zds-to-zgw) on Haven, powerd by the Frank!Framework
name: zaakbrug
type: application
version: 0.5.0
version: 0.5.1

home: https://github.com/ibissource/zaakbrug
icon: "https://raw.githubusercontent.com/ibissource/zaakbrug/master/zaakbrug-icon.png"
Expand All @@ -15,4 +15,4 @@ keywords:
- zds
- zgw
- esb
- frank
- frank
8 changes: 4 additions & 4 deletions charts/zaakbrug/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data:
{{- with .Values.frank.configurations.names }}
configurations.names: {{ . }}
{{- end }}
application.security.http.authentication: {{ .Values.frank.security.http.authentication | toString | quote }}
application.security.http.authentication: "{{ .Values.frank.security.http.authentication }}"
application.security.http.transportGuarantee: {{ .Values.frank.security.http.enforceHttps | ternary "CONFIDENTIAL" "NONE" }}
{{- if .Values.frank.security.http.authentication }}
{{- with .Values.frank.security.http.ad }}
Expand Down Expand Up @@ -46,15 +46,15 @@ data:
{{- with .Values.zaakbrug.soap }}
{{- with .beantwoordVraag }}
zaakbrug.soap.beantwoord-vraag.endpoint: {{ .endpoint }}
zaakbrug.soap.beantwoord-vraag.validation-soft-fail: {{ toString .validationSoftFail | quote }}
zaakbrug.soap.beantwoord-vraag.validation-soft-fail: "{{ .validationSoftFail }}"
{{- end }}
{{- with .ontvangAsynchroon }}
zaakbrug.soap.ontvang-asynchroon.endpoint: {{ .endpoint }}
zaakbrug.soap.ontvang-asynchroon.validation-soft-fail: {{ toString .validationSoftFail | quote }}
zaakbrug.soap.ontvang-asynchroon.validation-soft-fail: "{{ .validationSoftFail }}"
{{- end }}
{{- with .vrijeBerichten }}
zaakbrug.soap.vrije-berichten.endpoint: {{ .endpoint }}
zaakbrug.soap.vrije-berichten.validation-soft-fail: {{ toString .validationSoftFail | quote }}
zaakbrug.soap.vrije-berichten.validation-soft-fail: "{{ .validationSoftFail }}"
{{- end }}
{{- end }}
{{- with .Values.zaakbrug.zgw }}
Expand Down

0 comments on commit a5f7fac

Please sign in to comment.