apiVersion: v1 kind: Pod metadata: labels: run: busybox name: busybox spec: terminationGracePeriodSeconds: 0 containers: - command: - /bin/sh - -c - | echo "running below scripts" i=0; while true; do echo "$i: $(date)"; i=$((i+1)); sleep 1; done name: busybox image: busybox