We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93ba5a2 commit 6dabb9bCopy full SHA for 6dabb9b
generate/generate.go
@@ -722,13 +722,11 @@ func (g *Generator) SetLinuxRootPropagation(rp string) error {
722
switch rp {
723
case "":
724
case "private":
725
- case "rprivate":
726
case "slave":
727
- case "rslave":
728
case "shared":
729
- case "rshared":
+ case "unbindable":
730
default:
731
- return fmt.Errorf("rootfs-propagation must be empty or one of private|rprivate|slave|rslave|shared|rshared")
+ return fmt.Errorf("rootfs-propagation must be empty or one of private|slave|shared|unbindable")
732
}
733
g.initSpecLinux()
734
g.spec.Linux.RootfsPropagation = rp
0 commit comments