From 269d9f5550a9d5a96ab90f3c36aad326a7f3f998 Mon Sep 17 00:00:00 2001 From: Lars Scheibling Date: Sat, 15 Apr 2023 19:54:07 +0000 Subject: [PATCH] Typo in image tag reference in deployment --- .gitlab-ci.yml | 2 +- Chart/Chart.yaml | 2 +- Chart/templates/deployment.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 29d565e..f7b99b9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ variables: - HELM_CHART_VERSION: "0.8.0" + HELM_CHART_VERSION: "0.8.1" stages: - deploy diff --git a/Chart/Chart.yaml b/Chart/Chart.yaml index 14bcbb1..0af0c4d 100644 --- a/Chart/Chart.yaml +++ b/Chart/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: cloudypress description: Helm chart to deploy Wordpress backed by PHP-CLI and Nginx Unit type: application -version: "0.8.0" +version: "0.8.1" appVersion: "6.2.0" diff --git a/Chart/templates/deployment.yaml b/Chart/templates/deployment.yaml index 226b507..f4812e9 100644 --- a/Chart/templates/deployment.yaml +++ b/Chart/templates/deployment.yaml @@ -38,7 +38,7 @@ spec: allowPrivilegeEscalation: false runAsUser: 0 {{- if .Values.global }} - image: {{ .Values.global.initImage | default "ghcr.io/cloudynes/php-cd" }}:{{ .Values.global.imagetag | default "latest" }} + image: {{ .Values.global.initImage | default "ghcr.io/cloudynes/php-cd" }}:{{ .Values.global.imageTag | default "latest" }} {{- else }} image: ghcr.io/cloudynes/php-cd:latest {{- end }} @@ -67,7 +67,7 @@ spec: securityContext: runAsUser: 101 {{- if .Values.global }} - image: {{ .Values.global.serverImage | default "ghcr.io/cloudynes/php-unit" }}:{{ .Values.global.imagetag | default "latest" }} + image: {{ .Values.global.serverImage | default "ghcr.io/cloudynes/php-unit" }}:{{ .Values.global.imageTag | default "latest" }} {{- else }} image: ghcr.io/cloudynes/php-unit:latest {{- end }}