-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathk8s-openclaw-services.yaml
More file actions
97 lines (97 loc) · 2.05 KB
/
k8s-openclaw-services.yaml
File metadata and controls
97 lines (97 loc) · 2.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
apiVersion: v1
kind: Namespace
metadata:
name: openclaw-services
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres-db
namespace: openclaw-services
labels:
app: postgres-db
spec:
replicas: 1
selector:
matchLabels:
app: postgres-db
template:
metadata:
labels:
app: postgres-db
spec:
containers:
- name: postgres
image: postgres:15
env:
- name: POSTGRES_DB
value: "financial_analysis"
- name: POSTGRES_USER
value: "finance_user"
- name: POSTGRES_PASSWORD
value: "secure_finance_password"
ports:
- containerPort: 5432
volumeMounts:
- name: postgres-storage
mountPath: /var/lib/postgresql/data
livenessProbe:
exec:
command:
- pg_isready
- -U
- finance_user
- -d
- financial_analysis
initialDelaySeconds: 30
periodSeconds: 10
readinessProbe:
exec:
command:
- pg_isready
- -U
- finance_user
- -d
- financial_analysis
initialDelaySeconds: 5
periodSeconds: 5
volumes:
- name: postgres-storage
persistentVolumeClaim:
claimName: postgres-pvc
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: postgres-pvc
namespace: openclaw-services
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
---
apiVersion: v1
kind: Service
metadata:
name: postgres-db
namespace: openclaw-services
spec:
selector:
app: postgres-db
ports:
- protocol: TCP
port: 5432
targetPort: 5432
type: ClusterIP
---
apiVersion: v1
kind: ConfigMap
metadata:
name: openclaw-config
namespace: openclaw-services
data:
# Configuration for services that need to connect to WSL-based OpenClaw
WSL_OPENCLAW_HOST: "host.docker.internal" # For Docker Desktop
WSL_OPENCLAW_HOST_FALLBACK: "172.17.0.1" # For Linux Docker