mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
37 lines
772 B
YAML
37 lines
772 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: selenium-hub
|
|
labels:
|
|
app: selenium-hub
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
app: selenium-hub
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: selenium-hub
|
|
spec:
|
|
containers:
|
|
- name: selenium-hub
|
|
image: selenium/hub:2.53.0
|
|
ports:
|
|
- containerPort: 4444
|
|
resources:
|
|
limits:
|
|
memory: "1000Mi"
|
|
cpu: ".5"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /grid/console
|
|
port: 4444
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 5
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /grid/console
|
|
port: 4444
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 5
|