forked from Vinge1718/yolo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yml
59 lines (58 loc) · 1.32 KB
/
deployment.yml
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: apps/v1
kind: Deployment
metadata:
name: yolo-deployment
spec:
replicas: 1
selector:
matchLabels:
app: yolo
template:
metadata:
labels:
app: yolo
spec:
containers:
- name: frontend
image: marvol0/yolo-frontend:v2.0.0
ports:
- containerPort: 3000
resources:
requests:
memory: "128Mi"
cpu: "250m"
limits:
memory: "256Mi"
cpu: "500m"
- name: backend
image: marvol0/yolo-backend:v1.0.0
ports:
- containerPort: 5000
env:
- name: MONGODB_DATABASE
valueFrom:
configMapKeyRef:
name: mongodb-config
key: database
- name: MONGODB_HOST
valueFrom:
configMapKeyRef:
name: mongodb-config
key: host
- name: MONGODB_USERNAME
valueFrom:
secretKeyRef:
name: mongodb-secret
key: username
- name: MONGODB_PASSWORD
valueFrom:
secretKeyRef:
name: mongodb-secret
key: password
resources:
requests:
memory: "256Mi"
cpu: "500m"
limits:
memory: "512Mi"
cpu: "1"