Skip to content

Commit

Permalink
fix(helm): Use yaml instead of yaml for application, secrets & config…
Browse files Browse the repository at this point in the history
…maps (#746)


Co-authored-by: Jean-Christophe Vassort <jean-christophe.vassort@arhs-consulting.com>
  • Loading branch information
AnatomicJC and Jean-Christophe Vassort committed Jun 29, 2021
1 parent c34526d commit 2bd7222
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/akhq/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ metadata:
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
application.yml: |
{{ .Values.configuration | indent 4}}
{{ toYaml .Values.configuration | indent 4}}
{{- end }}
4 changes: 2 additions & 2 deletions helm/akhq/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extraEnv: []
# value: "/any/additional/jars/desired.jar:/go/here.jar"

## Or you can also use configmap for the configuration...
configuration: |
configuration:
akhq:
server:
access-log:
Expand All @@ -35,7 +35,7 @@ configuration: |
##... and secret for connection information
existingSecrets: ""
# name of the existingSecret
secrets: |
secrets: {}
# akhq:
# connections:
# my-cluster-plain-text:
Expand Down

0 comments on commit 2bd7222

Please sign in to comment.