mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			360 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			360 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: extensions/v1beta1 
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: nginx-deployment
 | |
|   labels:
 | |
|     name: nginx-deployment
 | |
| spec:
 | |
|   replicas: 3
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       name: nginx
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         name: nginx
 | |
|     spec:
 | |
|       containers:
 | |
|       - name: nginx
 | |
|         image: nginx
 | |
|         ports:
 | |
|         - containerPort: 80
 |