templates/deployment.yaml を更新
This commit is contained in:
@@ -1,69 +1,180 @@
|
|||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "{{ .Chart.Name }}.fullname" . }}
|
name: {{ include "phpmyadmin-nginx.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "{{ .Chart.Name }}.labels" . | nindent 4 }}
|
{{- include "phpmyadmin-nginx.labels" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- if not .Values.autoscaling.enabled }}
|
||||||
replicas: {{ .Values.replicaCount }}
|
replicas: {{ .Values.replicaCount }}
|
||||||
|
{{- end }}
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
{{- include "{{ .Chart.Name }}.selectorLabels" . | nindent 6 }}
|
{{- include "phpmyadmin-nginx.selectorLabels" . | nindent 6 }}
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
|
annotations:
|
||||||
|
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
||||||
|
checksum/nginx-config: {{ include (print $.Template.BasePath "/nginx-configmap.yaml") . | sha256sum }}
|
||||||
|
{{- with .Values.podAnnotations }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "{{ .Chart.Name }}.selectorLabels" . | nindent 8 }}
|
{{- include "phpmyadmin-nginx.selectorLabels" . | nindent 8 }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
serviceAccountName: {{ include "phpmyadmin-nginx.serviceAccountName" . }}
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||||
|
initContainers:
|
||||||
|
- name: init-php-fpm
|
||||||
|
image: "{{ .Values.image.phpmyadmin.registry }}/{{ .Values.image.phpmyadmin.repository }}:{{ .Values.image.phpmyadmin.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.image.phpmyadmin.pullPolicy }}
|
||||||
|
command: ['sh', '-c', 'echo "PHP-FPM init container completed"']
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.securityContext.phpmyadmin | nindent 10 }}
|
||||||
containers:
|
containers:
|
||||||
- name: nginx
|
- name: nginx
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.securityContext.nginx | nindent 10 }}
|
||||||
image: "{{ .Values.image.nginx.registry }}/{{ .Values.image.nginx.repository }}:{{ .Values.image.nginx.tag }}"
|
image: "{{ .Values.image.nginx.registry }}/{{ .Values.image.nginx.repository }}:{{ .Values.image.nginx.tag }}"
|
||||||
imagePullPolicy: {{ .Values.image.nginx.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.nginx.pullPolicy }}
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- name: http
|
||||||
|
containerPort: 8080
|
||||||
|
protocol: TCP
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
|
||||||
|
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
|
||||||
|
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
|
||||||
|
failureThreshold: {{ .Values.livenessProbe.failureThreshold }}
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
|
||||||
|
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
|
||||||
|
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
|
||||||
|
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.resources.nginx | nindent 10 }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: app-storage
|
|
||||||
mountPath: /var/www/html
|
|
||||||
subPath: html
|
|
||||||
- name: nginx-config
|
- name: nginx-config
|
||||||
mountPath: /etc/nginx/nginx.conf
|
mountPath: /etc/nginx/nginx.conf
|
||||||
subPath: nginx.conf
|
subPath: nginx.conf
|
||||||
- name: app-fpm
|
readOnly: true
|
||||||
image: "{{ .Values.image.php.registry }}/{{ .Values.image.php.repository }}:{{ .Values.image.php.tag }}"
|
- name: nginx-default-conf
|
||||||
imagePullPolicy: {{ .Values.image.php.pullPolicy }}
|
mountPath: /etc/nginx/conf.d/default.conf
|
||||||
ports:
|
subPath: default.conf
|
||||||
- name: fpm
|
readOnly: true
|
||||||
containerPort: 9000 # PHP-FPMは9000ポートでリッスン
|
- name: nginx-cache
|
||||||
volumeMounts:
|
mountPath: /var/cache/nginx
|
||||||
- name: app-storage
|
- name: nginx-run
|
||||||
|
mountPath: /var/run
|
||||||
|
- name: phpmyadmin-data
|
||||||
mountPath: /var/www/html
|
mountPath: /var/www/html
|
||||||
subPath: html
|
readOnly: true
|
||||||
|
- name: phpmyadmin
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.securityContext.phpmyadmin | nindent 10 }}
|
||||||
|
image: "{{ .Values.image.phpmyadmin.registry }}/{{ .Values.image.phpmyadmin.repository }}:{{ .Values.image.phpmyadmin.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.image.phpmyadmin.pullPolicy }}
|
||||||
env:
|
env:
|
||||||
- name: DB_HOST
|
{{- range .Values.phpmyadmin.hosts }}
|
||||||
value: {{ .Values.externalDatabase.host | quote }}
|
- name: PMA_HOST
|
||||||
- name: DB_PORT
|
value: {{ .host | quote }}
|
||||||
value: {{ .Values.externalDatabase.port | quote }}
|
- name: PMA_PORT
|
||||||
- name: DB_NAME
|
value: {{ .port | quote }}
|
||||||
value: {{ .Values.externalDatabase.database | quote }}
|
{{- end }}
|
||||||
- name: DB_USER
|
- name: PMA_ARBITRARY
|
||||||
value: {{ .Values.externalDatabase.username | quote }}
|
value: {{ .Values.phpmyadmin.env.PMA_ARBITRARY | quote }}
|
||||||
- name: DB_PASSWORD
|
{{- if .Values.phpmyadmin.env.PMA_ABSOLUTE_URI }}
|
||||||
|
- name: PMA_ABSOLUTE_URI
|
||||||
|
value: {{ .Values.phpmyadmin.env.PMA_ABSOLUTE_URI | quote }}
|
||||||
|
{{- end }}
|
||||||
|
- name: UPLOAD_LIMIT
|
||||||
|
value: {{ .Values.phpmyadmin.env.UPLOAD_LIMIT | quote }}
|
||||||
|
- name: MEMORY_LIMIT
|
||||||
|
value: {{ .Values.phpmyadmin.env.MEMORY_LIMIT | quote }}
|
||||||
|
- name: MAX_EXECUTION_TIME
|
||||||
|
value: {{ .Values.phpmyadmin.env.MAX_EXECUTION_TIME | quote }}
|
||||||
|
{{- if or .Values.phpmyadmin.blowfishSecret .Values.phpmyadmin.existingSecret }}
|
||||||
|
- name: PMA_BLOWFISH_SECRET
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: {{ include "{{ .Chart.Name }}.fullname" . }}-db-secret
|
name: {{ .Values.phpmyadmin.existingSecret | default (include "phpmyadmin-nginx.fullname" .) }}
|
||||||
key: {{ include "{{ .Chart.Name }}.fullname" . }}-db-key
|
key: blowfish-secret
|
||||||
dnsPolicy: ClusterFirst
|
|
||||||
dnsConfig:
|
|
||||||
options:
|
|
||||||
- name: ndots
|
|
||||||
value: "1"
|
|
||||||
volumes:
|
|
||||||
- name: app-storage
|
|
||||||
{{- if .Values.persistence.enabled }}
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ include "{{ .Chart.Name }}.fullname" . }}-pvc
|
|
||||||
{{- else }}
|
|
||||||
emptyDir: {}
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
ports:
|
||||||
|
- name: php-fpm
|
||||||
|
containerPort: 9000
|
||||||
|
protocol: TCP
|
||||||
|
livenessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: php-fpm
|
||||||
|
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
|
||||||
|
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
|
||||||
|
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
|
||||||
|
failureThreshold: {{ .Values.livenessProbe.failureThreshold }}
|
||||||
|
readinessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: php-fpm
|
||||||
|
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
|
||||||
|
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
|
||||||
|
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
|
||||||
|
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.resources.phpmyadmin | nindent 10 }}
|
||||||
|
volumeMounts:
|
||||||
|
- name: phpmyadmin-data
|
||||||
|
mountPath: /var/www/html
|
||||||
|
{{- if .Values.persistence.enabled }}
|
||||||
|
- name: sessions
|
||||||
|
mountPath: /sessions
|
||||||
|
{{- end }}
|
||||||
|
- name: php-fpm-run
|
||||||
|
mountPath: /var/run
|
||||||
|
volumes:
|
||||||
- name: nginx-config
|
- name: nginx-config
|
||||||
configMap:
|
configMap:
|
||||||
name: {{ include "{{ .Chart.Name }}.fullname" . }}-nginx-config
|
name: {{ include "phpmyadmin-nginx.fullname" . }}-nginx
|
||||||
|
items:
|
||||||
|
- key: nginx.conf
|
||||||
|
path: nginx.conf
|
||||||
|
- name: nginx-default-conf
|
||||||
|
configMap:
|
||||||
|
name: {{ include "phpmyadmin-nginx.fullname" . }}-nginx
|
||||||
|
items:
|
||||||
|
- key: default.conf
|
||||||
|
path: default.conf
|
||||||
|
- name: nginx-cache
|
||||||
|
emptyDir: {}
|
||||||
|
- name: nginx-run
|
||||||
|
emptyDir: {}
|
||||||
|
- name: php-fpm-run
|
||||||
|
emptyDir: {}
|
||||||
|
- name: phpmyadmin-data
|
||||||
|
emptyDir: {}
|
||||||
|
{{- if .Values.persistence.enabled }}
|
||||||
|
- name: sessions
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: {{ include "phpmyadmin-nginx.fullname" . }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.nodeSelector }}
|
||||||
|
nodeSelector:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.affinity }}
|
||||||
|
affinity:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
|
tolerations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
Reference in New Issue
Block a user