-
Notifications
You must be signed in to change notification settings - Fork 64
/
selenium-node-chrome-debug.yaml
103 lines (102 loc) · 2.66 KB
/
selenium-node-chrome-debug.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
apiVersion: v1
kind: Template
metadata:
name: selenium-node-chrome-debug
annotations:
description: "Selenium Node with Google Chrome browser"
iconClass: "icon-selenium"
tags: "selenium,node,chrome,debug"
objects:
- apiVersion: v1
kind: DeploymentConfig
metadata:
name: selenium-node-chrome-debug
spec:
strategy:
type: Recreate
replicas: 1
selector:
browser: chrome
template:
metadata:
name: selenium-node-chrome-debug-master
labels:
browser: chrome
spec:
containers:
- env:
- name: JAVA_OPTS
value: ${JAVA_OPTS}
- name: SE_OPTS
value: ${SE_OPTS}
- name: HUB_PORT_4444_TCP_ADDR
value: ${HUB_PORT_4444_TCP_ADDR}
- name: HUB_PORT_4444_TCP_PORT
value: ${HUB_PORT_4444_TCP_PORT}
- name: REMOTE_HOST
value: ${REMOTE_HOST}
- name: SE_EVENT_BUS_HOST
value: ${SE_EVENT_BUS_HOST}
- name: SE_EVENT_BUS_PUBLISH_PORT
value: ${SE_EVENT_BUS_PUBLISH_PORT}
- name: SE_EVENT_BUS_SUBSCRIBE_PORT
value: ${SE_EVENT_BUS_SUBSCRIBE_PORT}
image: selenium/node-chrome-debug:4.0.0
name: master
ports:
- containerPort: 4444
protocol: TCP
- containerPort: 5555
protocol: TCP
- containerPort: 5900
protocol: TCP
- apiVersion: v1
kind: Service
metadata:
name: selenium-node-chrome-debug
spec:
selector:
browser: chrome
type: ClusterIP
ports:
- name: node-port
port: 5555
targetPort: 5555
protocol: TCP
- name: vnc-port
port: 5900
targetPort: 5900
protocol: TCP
- name: node-port-grid
port: 4444
targetPort: 4444
protocol: TCP
parameters:
- name: JAVA_OPTS
description: Options for the Java command
value: "-Xmx512m -Dselenium.LOGGER.level=WARNING"
- name: SE_OPTS
description: Options for the Node
value: ""
- name: HUB_PORT_4444_TCP_ADDR
description: The Hub to connect to
value: "selenium-hub"
- name: HUB_PORT_4444_TCP_PORT
description: The Hub port to connect to
value: "4444"
- name: REMOTE_HOST
description: The remote host
value: ""
- name: NODE_ID
description: Unique ID assigned to the node
generate: expression
from: '[a-z]{4}'
- name: SE_EVENT_BUS_HOST
description: The selenium event hub host
value: "selenium-hub"
- name: SE_EVENT_BUS_PUBLISH_PORT
description: The publish port
value: "4442"
- name: SE_EVENT_BUS_SUBSCRIBE_PORT
description: The subscribe port
value: "4443"