I have edited it to this one but does not work as well.
apiVersion: batch/v1
kind: Job
metadata:
name: countdown-xfusion
spec:
template:
spec:
containers:
- name: container-countdown-xfusion
image: debian:latest
command: ["for i in {ten nine eight seven six five four three two one} ; do echo $i ; done " ]
restartPolicy: Never