File tree Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -72,17 +72,8 @@ message User {
7272 // expected
7373 optional PlatformType type = 1 ;
7474
75- optional LinuxUser linux_type = 2 ;
76- }
77-
78- // LinuxUser specifies linux specific user and group information for the
79- // container's main process.
80- message LinuxUser {
81- // Uid is the user id.
82- optional int32 uid = 1 ;
83- // Gid is the group id.
84- optional int32 gid = 2 ;
85- repeated int32 additional_gids = 3 ;
75+ //optional LinuxUser linux_type = 2;
76+ extensions 100 to 499;
8677}
8778
8879// Root contains information about the container's root filesystem on the host.
Original file line number Diff line number Diff line change 1+ package oci ;
2+
3+ import "config.proto" ;
4+
5+ // LinuxUser specifies linux specific user and group information for the
6+ // container's main process.
7+ extend oci.User {
8+ // Uid is the user id.
9+ optional int32 uid = 101 ;
10+ // Gid is the group id.
11+ optional int32 gid = 102 ;
12+ repeated int32 additional_gids = 103 ;
13+ }
14+
You can’t perform that action at this time.
0 commit comments