Commit 25796dfd authored by sonicaj's avatar sonicaj

Mount custom nginx configuration for nginx deployment

parent 0b615db4
......@@ -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"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment