diff --git a/maps/templates/deployment.yaml b/maps/templates/deployment.yaml index cafa592d37fd47f77f329b5c6c75cebbe88e7316..d666b3213413fc009d719b55433b3bd75725ad3b 100644 --- a/maps/templates/deployment.yaml +++ b/maps/templates/deployment.yaml @@ -31,7 +31,28 @@ spec: securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - - name: {{ .Chart.Name }} + - name: fpm + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: fpm + containerPort: 9000 + protocol: TCP + livenessProbe: + tcpSocket: + port: fpm + readinessProbe: + tcpSocket: + port: fpm + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.fpm.volumeMounts }} + volumeMounts: + {{- toYaml . | nindent 12 }} + {{- end }} + - name: nginx securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" @@ -50,7 +71,7 @@ spec: port: http resources: {{- toYaml .Values.resources | nindent 12 }} - {{- with .Values.volumeMounts }} + {{- with .Values.fpm.volumeMounts }} volumeMounts: {{- toYaml . | nindent 12 }} {{- end }} diff --git a/maps/values.yaml b/maps/values.yaml index 60b33b0416a9c1aad8a2c1617964245245011222..67c7eced355a557c9829494cf71468161d68cbd3 100644 --- a/maps/values.yaml +++ b/maps/values.yaml @@ -85,11 +85,8 @@ volumes: [] # secretName: mysecret # optional: false -# Additional volumeMounts on the output Deployment definition. -volumeMounts: [] -# - name: foo -# mountPath: "/etc/foo" -# readOnly: true +fpm: + volumeMounts: [] nodeSelector: {}