Files
tonePage/apps/deploy/postgres-deployment.yaml
tone 695577d53a
Some checks failed
Deploy to K3s / deploy (push) Failing after 16s
chore: 提交deploy文件,step.run修改为相对路径
2025-12-20 13:26:22 +08:00

43 lines
846 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres
spec:
replicas: 1
selector:
matchLabels:
app: postgres
template:
metadata:
labels:
app: postgres
spec:
containers:
- name: postgres
image: postgres:17-alpine
ports:
- containerPort: 5432
envFrom:
- secretRef:
name: postgres-secret
volumeMounts:
- name: postgres-storage
mountPath: /var/lib/postgresql/data
volumes:
- name: postgres-storage
hostPath:
path: /var/lib/postgres-data
type: DirectoryOrCreate
---
apiVersion: v1
kind: Service
metadata:
name: postgres-service
spec:
selector:
app: postgres
ports:
- protocol: TCP
port: 5432
targetPort: 5432