34 lines
373 B
YAML
34 lines
373 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: lifecycle-demo
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: lifecycle-demo-container
|
||
|
image: nginx
|
||
|
|
||
|
lifecycle:
|
||
|
postStart:
|
||
|
exec:
|
||
|
command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"]
|
||
|
preStop:
|
||
|
exec:
|
||
|
command: ["/usr/sbin/nginx","-s","quit"]
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|