I want argo to choose the default entry point of a container. It does not.
container:
image:workflow-step-XXX:e72b5997
args: ["{{inputs.parameters}}"]
fails and the following works:
container:
image:workflow-step-XXX:e72b5997
args: ["{{inputs.parameters}}"]
command: ["/check-preconditions"]
When I directly docker run the container the entry point works as expected
GCE
v2.11.1
Message from the maintainers:
Impacted by this bug? Give it a 馃憤. We prioritise the issues with the most 馃憤.
Argo workflows only creates PODs, does not touch command or args in the POD spec, if your entrypoint doesn't work which means your k8s is not honoring the entrypoint of your container.
Oh. Thanks for that info!
Most helpful comment
Argo workflows only creates PODs, does not touch
commandorargsin the POD spec, if your entrypoint doesn't work which means your k8s is not honoring the entrypoint of your container.