From 068edd83e1366c8b7cce262cd45045c641bf5b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Fri, 12 Jul 2024 22:09:05 +0200 Subject: [PATCH] SAL: fix default image tags to match the original --- charts/nebulous-sal/Chart.yaml | 2 +- charts/nebulous-sal/templates/deployment.yaml | 4 ++-- charts/nebulous-sal/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/nebulous-sal/Chart.yaml b/charts/nebulous-sal/Chart.yaml index d94d450..3afd821 100644 --- a/charts/nebulous-sal/Chart.yaml +++ b/charts/nebulous-sal/Chart.yaml @@ -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 diff --git a/charts/nebulous-sal/templates/deployment.yaml b/charts/nebulous-sal/templates/deployment.yaml index 08ce764..6b705cd 100644 --- a/charts/nebulous-sal/templates/deployment.yaml +++ b/charts/nebulous-sal/templates/deployment.yaml @@ -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 }} @@ -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 }} diff --git a/charts/nebulous-sal/values.yaml b/charts/nebulous-sal/values.yaml index 6012ebf..5a39927 100644 --- a/charts/nebulous-sal/values.yaml +++ b/charts/nebulous-sal/values.yaml @@ -40,7 +40,7 @@ mariadb: image: repository: mariadb pullPolicy: IfNotPresent - tag: "" + tag: "latest" securityContext: {} resources: {}