diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-07 20:38:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 20:38:59 +0100 |
commit | 41934acc51c5046a56b17158d7f2b735961864ce (patch) | |
tree | 99a6768250c51635a7d3602e2f657a88b94b7fca /libpod/define | |
parent | 0464011a8ea705b31cf270407e76608c223c2f21 (diff) | |
parent | 13f3fd2555b1f02af4c183ef51d1707af1198eb9 (diff) | |
download | podman-41934acc51c5046a56b17158d7f2b735961864ce.tar.gz podman-41934acc51c5046a56b17158d7f2b735961864ce.tar.bz2 podman-41934acc51c5046a56b17158d7f2b735961864ce.zip |
Merge pull request #12733 from rhatdan/copy
Set volume NeedsCopyUp to false iff data was copied up
Diffstat (limited to 'libpod/define')
-rw-r--r-- | libpod/define/volume_inspect.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libpod/define/volume_inspect.go b/libpod/define/volume_inspect.go index 20602ea16..fac179176 100644 --- a/libpod/define/volume_inspect.go +++ b/libpod/define/volume_inspect.go @@ -48,4 +48,12 @@ type InspectVolumeData struct { // volume for a specific container, and will be be removed when any // container using it is removed. Anonymous bool `json:"Anonymous,omitempty"` + // MountCount is the number of times this volume has been mounted. + MountCount uint `json:"MountCount"` + // NeedsCopyUp indicates that the next time the volume is mounted into + NeedsCopyUp bool `json:"NeedsCopyUp,omitempty"` + // NeedsChown indicates that the next time the volume is mounted into + // a container, the container will chown the volume to the container process + // UID/GID. + NeedsChown bool `json:"NeedsChown,omitempty"` } |