-
Notifications
You must be signed in to change notification settings - Fork 0
/
backend.yaml
60 lines (60 loc) · 1.24 KB
/
backend.yaml
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
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: backend
labels:
app: backend
dash.ulagbulag.io/subject: mobilex-exp
spec:
selector:
matchLabels:
app: backend
dash.ulagbulag.io/subject: mobilex-exp
template:
metadata:
labels:
app: backend
dash.ulagbulag.io/subject: mobilex-exp
spec:
containers:
- name: server
image: ghcr.io/flowers-of-the-day/backend:v0.1.8
env:
- name: BASE_URL
value: /api/v1
- name: OPENAI_API_KEY
valueFrom:
secretKeyRef:
name: openai
key: OPENAI_API_KEY
- name: DATABASE_URL
value: postgresql://postgres:postgres@database:5432/dev?schema=public
ports:
- name: http
protocol: TCP
containerPort: 8000
---
apiVersion: v1
kind: Service
metadata:
name: backend
labels:
app: backend
dash.ulagbulag.io/subject: mobilex-exp
spec:
type: ClusterIP
selector:
app: backend
ports:
- name: http
protocol: TCP
port: 8000
targetPort: 8000
---
apiVersion: v1
kind: Secret
metadata:
name: openai
stringData:
OPENAI_API_KEY: "sk-xxxx"