Skip to content

Commit

Permalink
add option to set trow host in helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
YannikSc committed Dec 20, 2022
1 parent 9d2ded4 commit 8fad434
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions charts/trow/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ spec:
- "--no-tls"
- "-n"
- {{ .Values.trow.domain | quote }}
{{- if .Values.trow.host }}
- "--host"
- {{ .Values.trow.host | quote }}
{{- end}}
{{- if and (.Values.trow.user) (.Values.trow.password) }}
- "-u"
- {{ .Values.trow.user | quote }}
Expand Down
1 change: 1 addition & 0 deletions charts/trow/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ image:

trow:
domain: myregistry.mydomain.io
# host: "::" # Enables IPv6 Support, by listening also on IPv6 interfaces
# user: user
# password: password
validation:
Expand Down

0 comments on commit 8fad434

Please sign in to comment.