forked from wormhole-foundation/wormhole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe2e.yaml
47 lines (47 loc) · 829 Bytes
/
e2e.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
---
apiVersion: v1
kind: Service
metadata:
name: e2e
labels:
app: e2e
spec:
clusterIP: None
selector:
app: e2e
ports:
- port: 6080
name: novnc
protocol: TCP
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: e2e
spec:
selector:
matchLabels:
app: e2e
serviceName: e2e
template:
metadata:
labels:
app: e2e
spec:
restartPolicy: Always
terminationGracePeriodSeconds: 0
containers:
- name: e2e-browser
image: e2e
command:
- ./run.sh
readinessProbe:
httpGet:
path: /
port: 6080
periodSeconds: 1
failureThreshold: 300
ports:
- containerPort: 6080
name: novnc
protocol: TCP