21 lines
		
	
	
		
			436 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			436 B
		
	
	
	
		
			YAML
		
	
	
	
| apiVersion: extensions/v1beta1
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: nginx
 | |
| spec:
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: nginx
 | |
|     spec:
 | |
|       containers:
 | |
|       - name: nginx
 | |
|         image: nginx
 | |
|         ports:
 | |
|         - containerPort: 80
 | |
|         lifecycle:
 | |
|           preStop:
 | |
|             exec:
 | |
|               # SIGTERM triggers a quick exit; gracefully terminate instead
 | |
|               command: ["/usr/sbin/nginx","-s","quit"]
 |