diff options
author | Adrian Reber <areber@redhat.com> | 2019-06-27 07:56:39 +0000 |
---|---|---|
committer | Adrian Reber <areber@redhat.com> | 2019-07-11 14:43:35 +0200 |
commit | 05549e8b2904427a1fb6d0b36889ac43360db073 (patch) | |
tree | f085e801b63094fb3f6c450ca9493f8a211414d8 /libpod/container_api.go | |
parent | 1a3207488477876a1f4018bf0df95ed8eaf85afc (diff) | |
download | podman-05549e8b2904427a1fb6d0b36889ac43360db073.tar.gz podman-05549e8b2904427a1fb6d0b36889ac43360db073.tar.bz2 podman-05549e8b2904427a1fb6d0b36889ac43360db073.zip |
Add --ignore-rootfs option for checkpoint/restore
The newly added functionality to include the container's root
file-system changes into the checkpoint archive can now be explicitly
disabled. Either during checkpoint or during restore.
If a container changes a lot of files during its runtime it might be
more effective to migrated the root file-system changes in some other
way and to not needlessly increase the size of the checkpoint archive.
If a checkpoint archive does not contain the root file-system changes
information it will automatically be skipped. If the root file-system
changes are part of the checkpoint archive it is also possible to tell
Podman to ignore these changes.
Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'libpod/container_api.go')
-rw-r--r-- | libpod/container_api.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/container_api.go b/libpod/container_api.go index 00467d2bf..c6e478846 100644 --- a/libpod/container_api.go +++ b/libpod/container_api.go @@ -799,6 +799,9 @@ type ContainerCheckpointOptions struct { // checkpoint archive a new name should be used for the // restored container Name string + // IgnoreRootfs tells the API to not export changes to + // the container's root file-system (or to not import) + IgnoreRootfs bool } // Checkpoint checkpoints a container |