Skip to content

Commit

Permalink
chore: fix default gloabl image tag
Browse files Browse the repository at this point in the history
  • Loading branch information
incubator4 committed Jan 24, 2024
1 parent 9f3a3c5 commit 0499d51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/serving-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.4
version: 0.1.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/serving-node/templates/broadcaster/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- name: {{ .Values.broadcaster.name }}
securityContext:
{{- toYaml .Values.broadcaster.securityContext | nindent 12 }}
image: "{{ default .Values.global.image.repository .Values.broadcaster.image.repository }}:{{ .Values.broadcaster.image.tag | default .Chart.AppVersion }}"
image: "{{ default .Values.global.image.repository .Values.broadcaster.image.repository }}:{{ (default .Values.global.image.tag .Values.broadcaster.image.tag) | default .Chart.AppVersion }}"
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.broadcaster.image.pullPolicy }}
args:
- --module=broadcaster
Expand Down
2 changes: 1 addition & 1 deletion charts/serving-node/templates/hub/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
- name: {{ .Values.hub.name }}
securityContext:
{{- toYaml .Values.hub.securityContext | nindent 12 }}
image: "{{ default .Values.global.image.repository .Values.hub.image.repository }}:{{ .Values.hub.image.tag | default .Chart.AppVersion }}"
image: "{{ default .Values.global.image.repository .Values.hub.image.repository }}:{{ (default .Values.global.image.tag .Values.hub.image.tag) | default .Chart.AppVersion }}"
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.hub.image.pullPolicy }}
args:
- --module=hub
Expand Down

0 comments on commit 0499d51

Please sign in to comment.