podman/libpod/define
Matthew Heon 25cc43c376 Add ContainerStateRemoving
When Libpod removes a container, there is the possibility that
removal will not fully succeed. The most notable problems are
storage issues, where the container cannot be removed from
c/storage.

When this occurs, we were faced with a choice. We can keep the
container in the state, appearing in `podman ps` and available for
other API operations, but likely unable to do any of them as it's
been partially removed. Or we can remove it very early and clean
up after it's already gone. We have, until now, used the second
approach.

The problem that arises is intermittent problems removing
storage. We end up removing a container, failing to remove its
storage, and ending up with a container permanently stuck in
c/storage that we can't remove with the normal Podman CLI, can't
use the name of, and generally can't interact with. A notable
cause is when Podman is hit by a SIGKILL midway through removal,
which can consistently cause `podman rm` to fail to remove
storage.

We now add a new state for containers that are in the process of
being removed, ContainerStateRemoving. We set this at the
beginning of the removal process. It notifies Podman that the
container cannot be used anymore, but preserves it in the DB
until it is fully removed. This will allow Remove to be run on
these containers again, which should successfully remove storage
if it fails.

Fixes #3906

Signed-off-by: Matthew Heon <mheon@redhat.com>
2019-11-19 15:38:03 -05:00
..
config.go add libpod/config 2019-10-31 17:42:37 +01:00
containerstate.go Add ContainerStateRemoving 2019-11-19 15:38:03 -05:00
errors.go Ensure volumes can be removed when they fail to unmount 2019-10-14 10:32:15 -04:00
exec_codes.go Fix exit code failure 2019-09-17 12:01:02 -04:00
runtime.go add libpod/config 2019-10-31 17:42:37 +01:00
version.go libpod removal from main (phase 2) 2019-06-27 07:56:24 -05:00