| 12345678910111213141516171819202122232425262728293031 |
- apiVersion: apps/v1
- kind: Deployment # Create a deployment
- metadata:
- name: postgres # Set the name of the deployment
- namespace: postgres
- spec:
- replicas: 1 # Set 3 deployment replicas
- selector:
- matchLabels:
- app: postgres
- template:
- metadata:
- labels:
- app: postgres
- spec:
- containers:
- - name: postgres
- image: postgres:12.10 # Docker image
- imagePullPolicy: "IfNotPresent"
- ports:
- - containerPort: 5432 # Exposing the container port 5432 for PostgreSQL client connections.
- envFrom:
- - configMapRef:
- name: postgres-config # Using the ConfigMap postgres-secret
- volumeMounts:
- - mountPath: /var/lib/postgresql/data
- name: postgresdata
- volumes:
- - name: postgresdata
- persistentVolumeClaim:
- claimName: pg-pv-claim
|