32 lines
790 B
YAML
32 lines
790 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ .Release.Name }}-postgres
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: {{ .Release.Name }}-postgres
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: {{ .Release.Name }}-postgres
|
|
spec:
|
|
containers:
|
|
- name: postgres
|
|
image: postgres:13
|
|
ports:
|
|
- containerPort: 5432
|
|
envFrom:
|
|
- secretRef:
|
|
name: {{ tpl .Values.identifier . }}-postgres-config
|
|
|
|
volumeMounts:
|
|
- name: postgres-data
|
|
mountPath: "/var/lib/postgresql/data"
|
|
subPath: postgres
|
|
volumes:
|
|
- name: postgres-data
|
|
persistentVolumeClaim:
|
|
claimName: {{ tpl .Values.identifier . }}-postgres-data
|