wait: add --ignore option

In the recent past, I met the frequent need to wait for a container to
exist that, at the same time, may get removed (e.g., system tests in [1]).

Add an `--ignore` option to podman-wait which will ignore errors when a
specified container is missing and mark its exit code as -1.  Also
remove ID fields from the WaitReport.  It is actually not used by
callers and removing it makes the code simpler and faster.

Once merged, we can go over the tests and simplify them.

[1] github.com/containers/podman/pull/16852

Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2022-12-15 14:24:33 +01:00
parent 18f1a8046b
commit f4d0496b54
6 changed files with 50 additions and 16 deletions

View File

@@ -52,11 +52,11 @@ type ContainerRunlabelReport struct{}
type WaitOptions struct {
Condition []define.ContainerStatus
Interval time.Duration
Ignore bool
Latest bool
}
type WaitReport struct {
Id string //nolint:revive,stylecheck
Error error
ExitCode int32
}