Typo in image tag reference in deployment

This commit is contained in:
2023-04-15 19:54:07 +00:00
parent 266cbc4afb
commit 269d9f5550
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
variables: variables:
HELM_CHART_VERSION: "0.8.0" HELM_CHART_VERSION: "0.8.1"
stages: stages:
- deploy - deploy

View File

@@ -2,5 +2,5 @@ apiVersion: v2
name: cloudypress name: cloudypress
description: Helm chart to deploy Wordpress backed by PHP-CLI and Nginx Unit description: Helm chart to deploy Wordpress backed by PHP-CLI and Nginx Unit
type: application type: application
version: "0.8.0" version: "0.8.1"
appVersion: "6.2.0" appVersion: "6.2.0"

View File

@@ -38,7 +38,7 @@ spec:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
runAsUser: 0 runAsUser: 0
{{- if .Values.global }} {{- 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 }} {{- else }}
image: ghcr.io/cloudynes/php-cd:latest image: ghcr.io/cloudynes/php-cd:latest
{{- end }} {{- end }}
@@ -67,7 +67,7 @@ spec:
securityContext: securityContext:
runAsUser: 101 runAsUser: 101
{{- if .Values.global }} {{- 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 }} {{- else }}
image: ghcr.io/cloudynes/php-unit:latest image: ghcr.io/cloudynes/php-unit:latest
{{- end }} {{- end }}