Skip to content

Commit

Permalink
add support for any env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgomz committed Jan 8, 2024
1 parent 569da58 commit 35ef30b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,9 @@ data:
-Dmessaging.broker.url=$BROKER_URL
-Dmessaging.username=$BROKER_USERNAME
-Dmessaging.password=$BROKER_PASSWORD
{{ .Values.environment.JAVA_OPTS }}
{{- with .Values.environment }}
{{ .JAVA_OPTS }}
{{- end }}
{{- range $key, $val := omit .Values.environment "JAVA_OPTS" }}
{{- $key }}: {{ $val | quote | nindent 2 }}
{{- end }}

0 comments on commit 35ef30b

Please sign in to comment.