mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-27 03:28:28 +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
 |