File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -62,20 +62,20 @@ enum PlatformType {
6262
6363// User specifies user information for the process.
6464message User {
65- // Type so that receivers of this message can `switch` for the fields expected
66- optional PlatformType Type = 1 [default = LINUX ];
67- // LinuxUserFields are to be used when Type is LINUX
68- optional linuxUserFields LinuxUserFields = 2 ;
65+ // Type so that receivers of this message can `switch` for the fields expected
66+ optional PlatformType Type = 1 [default = LINUX ];
67+
68+ optional LinuxUser LinuxUser = 2 ;
6969}
7070
7171// User specifies linux specific user and group information for the container's
7272// main process.
73- message linuxUserFields {
73+ message LinuxUser {
7474 // UID is the user id.
75- optional int32 UID = 1 ;
75+ optional int32 UID = 1 ;
7676 // GID is the group id.
77- optional int32 GID = 2 ;
78- repeated int32 AdditionalGids = 3 ;
77+ optional int32 GID = 2 ;
78+ repeated int32 AdditionalGids = 3 ;
7979}
8080
8181// Root contains information about the container's root filesystem on the host.
You can’t perform that action at this time.
0 commit comments