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.
2 parents e3c6364 + 7ab0fc8 commit 81c608dCopy full SHA for 81c608d
cmd/runtimetest/main.go
@@ -560,6 +560,11 @@ func validateMountsExist(spec *rspec.Spec) error {
560
}
561
562
for _, specMount := range spec.Mounts {
563
+ if specMount.Type == "bind" || specMount.Type == "rbind" {
564
+ // TODO: add bind or rbind check.
565
+ continue
566
+ }
567
+
568
found := false
569
for _, sysMount := range mountsMap[filepath.Clean(specMount.Destination)] {
570
if err := mountMatch(specMount, sysMount); err == nil {
0 commit comments