-
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
Fixed Healthcheck formatting, string to []string #11048
Fixed Healthcheck formatting, string to []string #11048
Conversation
e656a2e
to
df0ae5a
Compare
LGTM |
6fe7630
to
2295e62
Compare
@jwhonce @rhatdan I am realizing now that this would be much simpler and compat if we required users (like docker) to specify EDIT: I was able to basically recreate the logic of cmd vs cmd-shell vs none in our specgen code so there is no need for differentiation in the CLI |
0351ad6
to
4bbf5c6
Compare
Compat healthcheck tests are of the format []string but podman's were of the format string. Converted podman's to []string at the specgen level since it has the same effect and removed the incorrect parsing of compat healthchecks. fixes containers#10617 Signed-off-by: cdoern <[email protected]>
4bbf5c6
to
fd1f57b
Compare
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/hold
Please do not merge until #11048 (comment) is resolved. |
612a15c
to
9ac9fed
Compare
1756c17
to
17dc466
Compare
17dc466
to
fb89f7d
Compare
Compat healthcheck tests are of the format []string but podman's were of the format string. Converted podman's to []string at the specgen level since it has the same effect and removed the incorrect parsing of compat healthchecks. fixes containers#10617 Signed-off-by: cdoern <[email protected]>
fb89f7d
to
a9f6592
Compare
LGTM |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cdoern, Luap99 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 |
Compat healthcheck tests are of the format []string but podman's were of
the format string. Converted podman's to []string at the specgen level since it has the same effect
and removed the incorrect parsing of compat healthchecks.
fixes #10617
Signed-off-by: cdoern [email protected]