Change entrypoint of a k8s Pod, but keep the CMD Change entrypoint of a k8s Pod, but keep the CMD kubernetes kubernetes

Change entrypoint of a k8s Pod, but keep the CMD


That's not a thing. ENTRYPOINT in Dockerfile == command: in PodSpec, and CMD == args:. So just override command but not args.