Skip to content

Commit

Permalink
Merge pull request cri-o#7828 from saschagrunert/rro-disable
Browse files Browse the repository at this point in the history
Disable Recursive Read-only (RRO) mounts feature
  • Loading branch information
openshift-merge-bot[bot] authored Feb 29, 2024
2 parents d705c02 + 115e11d commit 9975449
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/runtime_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ func (s *Server) Status(ctx context.Context, req *types.StatusRequest) (*types.S
}
}

rro := runtime.RuntimeSupportsMountFlag("rro")
// TODO: enable when CRI-O implemented Recursive Read-only (RRO) mounts
// rro := runtime.RuntimeSupportsMountFlag("rro")
rro := false

userns := runtime.RuntimeSupportsIDMap()
h := makeRuntimeHandler(name, rro, userns)
resp.RuntimeHandlers = append(resp.RuntimeHandlers, h)
Expand Down

0 comments on commit 9975449

Please sign in to comment.