A Pod command and arguments can be overriden the following way:

apiVersion: v1
kind: Pod
metadata:
  name: command-demo
  labels:
    purpose: demonstrate-command
spec:
  containers:
  - name: command-demo-container
    image: busybox
    command: ["/bin/bash"]
    args: ["-c", "sleep 3600"]

Source