-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgres.yaml
More file actions
65 lines (65 loc) · 1.62 KB
/
Copy pathpostgres.yaml
File metadata and controls
65 lines (65 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
apiVersion: v1
kind: Service
metadata:
name: ai-sql-analyst-postgres
namespace: ai-sql-analyst
spec:
selector:
app: ai-sql-analyst-postgres
ports:
- name: postgres
port: 5432
targetPort: 5432
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: ai-sql-analyst-postgres
namespace: ai-sql-analyst
spec:
serviceName: ai-sql-analyst-postgres
replicas: 1
selector:
matchLabels:
app: ai-sql-analyst-postgres
template:
metadata:
labels:
app: ai-sql-analyst-postgres
spec:
containers:
- name: postgres
image: postgres:16-alpine
ports:
- containerPort: 5432
env:
- name: POSTGRES_DB
value: ai_sql_analyst
- name: POSTGRES_USER
value: ai_sql
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: ai-sql-analyst-secrets
key: POSTGRES_PASSWORD
readinessProbe:
exec:
command: ["pg_isready", "-U", "ai_sql", "-d", "ai_sql_analyst"]
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
exec:
command: ["pg_isready", "-U", "ai_sql", "-d", "ai_sql_analyst"]
initialDelaySeconds: 20
periodSeconds: 20
volumeMounts:
- name: postgres-data
mountPath: /var/lib/postgresql/data
volumeClaimTemplates:
- metadata:
name: postgres-data
spec:
accessModes: ["ReadWriteOnce"]
resources:
requests:
storage: 1Gi