34 lines
563 B
YAML
34 lines
563 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: Curio-db
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: Curio-db
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: Curio-db
|
|
spec:
|
|
containers:
|
|
- name: postgres
|
|
image: postgres:15-alpine
|
|
env:
|
|
- name: POSTGRES_PASSWORD
|
|
value: "Curio_secret"
|
|
- name: POSTGRES_DB
|
|
value: "Curio"
|
|
ports:
|
|
- containerPort: 5432
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: Curio-db
|
|
spec:
|
|
selector:
|
|
app: Curio-db
|
|
ports:
|
|
- port: 5432
|