-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.yaml
More file actions
58 lines (58 loc) · 1.29 KB
/
api.yaml
File metadata and controls
58 lines (58 loc) · 1.29 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
apiVersion: v1
kind: Service
metadata:
name: ai-sql-analyst-api
namespace: ai-sql-analyst
spec:
selector:
app: ai-sql-analyst-api
ports:
- name: http
port: 80
targetPort: 8000
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ai-sql-analyst-api
namespace: ai-sql-analyst
spec:
replicas: 2
selector:
matchLabels:
app: ai-sql-analyst-api
template:
metadata:
labels:
app: ai-sql-analyst-api
spec:
containers:
- name: api
image: ghcr.io/evanriley00/ai-sql-analyst:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8000
envFrom:
- configMapRef:
name: ai-sql-analyst-config
- secretRef:
name: ai-sql-analyst-secrets
readinessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 10
periodSeconds: 10
livenessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 30
periodSeconds: 20
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi