Merge pull request #116377 from kinvolk/rata/userns

KEP-127: user namespace support for stateless pods
This commit is contained in:
Kubernetes Prow Robot
2023-03-14 10:40:43 -07:00
committed by GitHub
15 changed files with 600 additions and 705 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -222,6 +222,10 @@ message Mount {
bool selinux_relabel = 4;
// Requested propagation mode.
MountPropagation propagation = 5;
// UidMappings specifies the runtime UID mappings for the mount.
repeated IDMapping uidMappings = 6;
// GidMappings specifies the runtime GID mappings for the mount.
repeated IDMapping gidMappings = 7;
}
// IDMapping describes host to container ID mappings for a pod sandbox.