|  | apiVersion: apps/v1
 | 
						
						
						
							|  | kind: Deployment
 | 
						
						
						
							|  | metadata:
 | 
						
						
						
							|  |   name: nginx-deployment
 | 
						
						
						
							|  | spec:
 | 
						
						
						
							|  |   selector:
 | 
						
						
						
							|  |     matchLabels:
 | 
						
						
						
							|  |       app: nginx
 | 
						
						
						
							|  |   replicas: 2
 | 
						
						
						
							|  |   template:
 | 
						
						
						
							|  |     metadata:
 | 
						
						
						
							|  |       labels:
 | 
						
						
						
							|  |         app: nginx
 | 
						
						
						
							|  |     spec:
 | 
						
						
						
							|  |       containers:
 | 
						
						
						
							|  |       - name: nginx
 | 
						
						
						
							|  |         image: nginx
 | 
						
						
						
							|  |         resources:
 | 
						
						
						
							|  |           limits:
 | 
						
						
						
							|  |             memory: "128Mi"
 | 
						
						
						
							|  |             cpu: "500m"
 | 
						
						
						
							|  |         ports:
 | 
						
						
						
							|  |         - containerPort: 80
 |