11 lines
234 B
YAML
11 lines
234 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: termination-demo
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: termination-demo-container
|
||
|
image: debian
|
||
|
command: ["/bin/sh"]
|
||
|
args: ["-c", "sleep 10 && echo Sleep expired > /dev/termination-log"]
|