mirror of
https://github.com/truenas/charts.git
synced 2026-02-12 23:06:13 +08:00
Mount custom nginx configuration for nginx deployment
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user