-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployment.yaml
More file actions
48 lines (47 loc) · 974 Bytes
/
deployment.yaml
File metadata and controls
48 lines (47 loc) · 974 Bytes
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
# backend-deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: backend-deployment
spec:
replicas: 3
selector:
matchLabels:
app: backend
template:
metadata:
labels:
app: backend
spec:
containers:
- name: backend
image: psp0/applyhelper_backend:latest
ports:
- containerPort: 8080
env:
- name: CHUNGYAK_INFO_API_KEY
valueFrom:
secretKeyRef:
name: chungyak-info-api-key
key: CHUNGYAK_INFO_API_KEY
---
# frontend-deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: frontend-deployment
spec:
replicas: 3
selector:
matchLabels:
app: frontend
template:
metadata:
labels:
app: frontend
spec:
containers:
- name: frontend
image: psp0/applyhelper_frontend:latest
ports:
- containerPort: 80