Skip to content

Commit

Permalink
SAL: fix default image tags to match the original
Browse files Browse the repository at this point in the history
  • Loading branch information
yoctozepto committed Jul 12, 2024
1 parent e7ec33c commit 068edd8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/nebulous-sal/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.0
version: 0.1.1

# 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
4 changes: 2 additions & 2 deletions charts/nebulous-sal/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
- name: mariadb
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.mariadb.image.repository }}:{{ .Values.mariadb.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.mariadb.image.repository }}:{{ .Values.mariadb.image.tag }}"
imagePullPolicy: {{ .Values.mariadb.image.pullPolicy }}
resources:
{{- toYaml .Values.mariadb.resources | nindent 12 }}
Expand Down Expand Up @@ -67,7 +67,7 @@ spec:
- name: sal
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/nebulous-sal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ mariadb:
image:
repository: mariadb
pullPolicy: IfNotPresent
tag: ""
tag: "latest"
securityContext: {}
resources: {}

Expand Down

0 comments on commit 068edd8

Please sign in to comment.