-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfrontend.yaml
63 lines (63 loc) · 1.32 KB
/
frontend.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
61
62
63
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: frontend
labels:
app: frontend
spec:
replicas: 2
template:
metadata:
name: frontend
labels:
app: frontend
spec:
containers:
- name: frontend
image: daggerok/k8s-ingress-explained-frontend
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8004
protocol: TCP
name: "webflux"
readinessProbe:
httpGet:
scheme: HTTP
port: 8004
path: /actuator/health
livenessProbe:
httpGet:
scheme: HTTP
port: 8004
path: /actuator/health
env:
- name: HELLO_HOST
value: "hello-variants-service"
- name: HELLO_PORT
value: "8002"
- name: GREETING_HOST
value: "greeting-service"
- name: GREETING_PORT
value: "8003"
restartPolicy: Always
selector:
matchLabels:
app: frontend
---
apiVersion: v1
kind: Service
metadata:
name: frontend
spec:
selector:
app: frontend
sessionAffinity: None
ports:
- port: 8004
protocol: TCP
name: "webflux"
targetPort: 8004
nodePort: 30004
type: NodePort
---