Allow containers to remount volumes when needed
This change allows containers to mount and remount volumes as needed. Before this change, when users had a mounted volume within a container, like in the case of services using NFS or RBD, it was not possible to remount a volume within the container runtime. While a user could unmount and mount a volume or restart a container, these actions results in service interuption where as a remount would simply reload the mounted volume without service interuption. Change-Id: Iff588cad451320167b92f2d79e4693a1037be966 Closes-Bug: #1814200 Signed-off-by: cloudnull <kevin@cloudnull.com>
This commit is contained in:
parent
459355449a
commit
1fca76c8d3
@ -24,5 +24,6 @@ profile lxc-openstack flags=(attach_disconnected,mediate_deleted) {
|
|||||||
mount fstype=cgroup2 -> /sys/fs/cgroup/**,
|
mount fstype=cgroup2 -> /sys/fs/cgroup/**,
|
||||||
mount fstype=proc -> {{ lxc_container_cache_path }}/**,
|
mount fstype=proc -> {{ lxc_container_cache_path }}/**,
|
||||||
mount fstype=sysfs -> {{ lxc_container_cache_path }}/**,
|
mount fstype=sysfs -> {{ lxc_container_cache_path }}/**,
|
||||||
|
mount options=(rw,remount),
|
||||||
mount options=(rw,bind) {{ lxc_container_cache_path }}/**/dev/shm/ -> {{ lxc_container_cache_path }}/**/run/shm/,
|
mount options=(rw,bind) {{ lxc_container_cache_path }}/**/dev/shm/ -> {{ lxc_container_cache_path }}/**/run/shm/,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user