-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.yaml
More file actions
49 lines (47 loc) · 981 Bytes
/
resources.yaml
File metadata and controls
49 lines (47 loc) · 981 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
49
apiVersion: apps/v1
kind: Deployment
metadata:
name: react-frontend
labels:
app: react-frontend
spec:
replicas: 1
selector:
matchLabels:
app: react-frontend
template:
metadata:
labels:
app: react-frontend
spec:
containers:
- name: react-frontend
image: datuits/devops-frontend:latest
ports:
- containerPort: 80
resources:
requests:
cpu: "0.25"
memory: "100Mi"
limits:
cpu: "0.5"
memory: "200Mi"
env:
- name: REACT_APP_API_URL
valueFrom:
configMapKeyRef:
name: api-gateway-config
key: REACT_APP_API_URL
---
apiVersion: v1
kind: Service
metadata:
name: react-frontend
spec:
selector:
app: react-frontend
ports:
- protocol: TCP
port: 80
targetPort: 80
type: LoadBalancer