Mount custom nginx configuration for nginx deployment

This commit is contained in:
sonicaj
2021-09-14 17:27:06 +05:00
parent 0b615db4e2
commit 25796dfdcd

View File

@@ -8,6 +8,11 @@ spec: {{ include "common.deployment.common_spec" $values | nindent 2 }}
- name: {{ .Chart.Name }}-nginx
image: {{ printf "%s:%s" .Values.nginx.image.repository .Values.nginx.image.tag }}
imagePullPolicy: {{ .Values.nginx.image.pullPolicy }}
volumeMounts:
- name: configuration
mountPath: /etc/nginx/nginx.conf
readOnly: true
subPath: config
ports:
- name: http
containerPort: 80
@@ -15,3 +20,8 @@ spec: {{ include "common.deployment.common_spec" $values | nindent 2 }}
- name: https
containerPort: 443
protocol: TCP
volumes:
- name: configuration
configMap:
defaultMode: 0700
name: "nginx-config"