apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "mailproxy.fullname" . }}-nginx labels: {{- include "mailproxy.labels" . | nindent 4 }} spec: replicas: {{ .Values.nginx.replicaCount }} selector: matchLabels: {{- include "mailproxy.selectorLabels" . | nindent 6 }} template: metadata: {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "mailproxy.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.nginx.image.repository }}:{{ .Values.nginx.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.nginx.image.pullPolicy }} ports: {{- range $i, $port := .Values.nginx.service.ports }} - name: {{ $port.name }} containerPort: {{ $port.number }} protocol: {{ $port.protocol }} {{- end }} livenessProbe: httpGet: path: / port: http readinessProbe: httpGet: path: / port: http volumeMounts: - mountPath: /etc/nginx/conf.d/phpfpm.conf subPath: phpfpm-conf name: nginxconf - mountPath: /etc/nginx/conf.d/imap.conf subPath: imap-conf name: nginxconf - mountPath: /etc/nginx/conf.d/pop.conf subPath: pop-conf name: nginxconf - mountPath: /etc/nginx/conf.d/smtp.conf subPath: smtp-conf name: nginxconf - mountPath: /etc/nginx/ssl name: {{ include "mailproxy.fullname" . }}-tls readOnly: true resources: {{- toYaml .Values.nginx.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }} volumes: - name: nginxconf configMap: name: {{ include "mailproxy.fullname" . }}-nginxconf