From 8fef27218ee4a6c74876b78638d65cc83d6b50c8 Mon Sep 17 00:00:00 2001 From: domrichardson <100129001+domrichardson@users.noreply.github.com> Date: Thu, 7 May 2026 10:01:49 +0100 Subject: [PATCH] feat: updated images Co-authored-by: Copilot --- templates/deployment.yaml | 10 +++++++++- values.yaml | 3 +++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/templates/deployment.yaml b/templates/deployment.yaml index 4d7a92b..1562034 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -38,7 +38,7 @@ spec: imagePullPolicy: {{ .Values.container1.image.pullPolicy }} ports: - name: http - containerPort: {{ .Values.service.port }} + containerPort: {{ .Values.container1.port }} protocol: TCP livenessProbe: {{- toYaml .Values.livenessProbe | nindent 12 }} @@ -55,6 +55,10 @@ spec: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.container2.image.repository }}:{{ .Values.container2.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.container2.image.pullPolicy }} + ports: + - name: http2 + containerPort: {{ .Values.container2.port }} + protocol: TCP resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.volumeMounts }} @@ -66,6 +70,10 @@ spec: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.container3.image.repository }}:{{ .Values.container3.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.container3.image.pullPolicy }} + ports: + - name: http3 + containerPort: {{ .Values.container3.port }} + protocol: TCP resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.volumeMounts }} diff --git a/values.yaml b/values.yaml index aaa546e..4ae1122 100644 --- a/values.yaml +++ b/values.yaml @@ -9,18 +9,21 @@ container1: repository: nginx pullPolicy: IfNotPresent tag: "1.28-bookworm" + port: 80 container2: image: repository: nginx pullPolicy: IfNotPresent tag: "1.27-alpine" + port: 8080 container3: image: repository: nginx pullPolicy: IfNotPresent tag: "1.26" + port: 8081 imagePullSecrets: [] nameOverride: ""