-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
play kube: fix args/command handling #8807
Conversation
when neither yaml.Args nor yaml.Command are specified, we should use the entrypoint and cmd from the image. update the tests to cover this and another case (both args and command are specified). use the registry image instead of redis, as it has both an entrypoint and command specified. update the documentation around this handling to hopefully prevent regressions and confusion. Signed-off-by: Peter Hunt <[email protected]>
lgtm |
/approve |
this does not use the spec's entrypoint ( PS: I am guessing it has more implications. Like signal handling. |
/lgtm |
it seems to be a more invasive change of behavior to start using entrypoint. I'm investigating that now |
I will address this in a follow up, it may need more conversation /hold cancel |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: baude, haircommander, zhangguanzhang The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Not sure what is going on here. Manually merging. |
This bug is quiet a severe break of functionality, can this PR be backported for v2.2.2? |
We are doing RC1 for podman 3.0 today. |
when neither yaml.Args nor yaml.Command are specified, we should use the entrypoint and cmd from the image.
update the tests to cover this and another case (both args and command are specified).
use the registry image instead of redis, as it has both an entrypoint and command specified.
update the documentation around this handling to hopefully prevent regressions and confusion.
fixes #8803
Signed-off-by: Peter Hunt [email protected]