feat: updated images

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
domrichardson
2026-05-07 10:04:45 +01:00
parent 8fef27218e
commit 80b03fed2d
2 changed files with 44 additions and 4 deletions
+15 -3
View File
@@ -61,8 +61,11 @@ spec:
protocol: TCP
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
- name: nginx-config-container2
mountPath: /etc/nginx/conf.d/default.conf
subPath: default.conf
{{- with .Values.volumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
- name: {{ .Chart.Name }}-container3
@@ -76,12 +79,21 @@ spec:
protocol: TCP
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
- name: nginx-config-container3
mountPath: /etc/nginx/conf.d/default.conf
subPath: default.conf
{{- with .Values.volumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.volumes }}
volumes:
- name: nginx-config-container2
configMap:
name: {{ .Release.Name }}-nginx-container2
- name: nginx-config-container3
configMap:
name: {{ .Release.Name }}-nginx-container3
{{- with .Values.volumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}