mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 22:01:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			366 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			366 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: apps/v1
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: nginx0-deployment
 | |
|   labels:
 | |
|     app: nginx0-deployment
 | |
| spec:
 | |
|   replicas: 2
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       app: nginx0
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: nginx0
 | |
|     spec:
 | |
|       containers:
 | |
|       - name: nginx
 | |
|         image: k8s.gcr.io/nginx:1.7.9
 | |
|         ports:
 | |
|         - containerPort: 80
 |