-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove appVersion field from Chart.yaml * Remove default port value for PostgreSQL in values.yaml * Update image tag default to use Chart.Version instead of AppVersion * Set default PostgreSQL port to 5432 in run_kind_test.sh
- Loading branch information
1 parent
c60134e
commit 424f29a
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{{- define "common.image" -}} | ||
{{ $registry := .root.Values.global.imageRegistry | default .image.registry }} | ||
{{- if $registry -}} | ||
{{ $registry }}/{{ .image.repository }}:{{ .image.tag | default .root.Chart.AppVersion }} | ||
{{ $registry }}/{{ .image.repository }}:{{ .image.tag | default .root.Chart.Version }} | ||
{{- else -}} | ||
{{ .image.repository }}:{{ .image.tag | default .root.Chart.AppVersion }} | ||
{{ .image.repository }}:{{ .image.tag | default .root.Chart.Version }} | ||
{{- end -}} | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters