mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			414 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			414 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: v1
 | |
| kind: Pod
 | |
| metadata:
 | |
|   labels:
 | |
|     test: liveness
 | |
|   name: liveness-exec
 | |
| spec:
 | |
|   containers:
 | |
|   - args:
 | |
|     - /bin/sh
 | |
|     - -c
 | |
|     - echo ok > /tmp/health; sleep 10; rm -rf /tmp/health; sleep 600
 | |
|     image: gcr.io/google_containers/busybox
 | |
|     livenessProbe:
 | |
|       exec:
 | |
|         command:
 | |
|         - cat
 | |
|         - /tmp/health
 | |
|       initialDelaySeconds: 15
 | |
|       timeoutSeconds: 1
 | |
|     name: liveness-exec
 |