Skip to content

Commit

Permalink
fix(keycloak-operator): don't quote value for poolMinSize
Browse files Browse the repository at this point in the history
  • Loading branch information
cfi2017 committed Dec 13, 2024
1 parent ba1c1bd commit 39fd78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/keycloak-operator/templates/keycloak/keycloak.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
poolMaxSize: {{ . }}
{{- end }}
{{- with .Values.keycloak.db.poolMinSize }}
poolMinSize: {{ . | quote }}
poolMinSize: {{ . }}
{{- end }}
{{- with .Values.keycloak.db.port }}
port: {{ . }}
Expand Down

0 comments on commit 39fd78d

Please sign in to comment.