mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			773 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			773 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.47.1 
 | 
						|
        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
 |