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.
1 parent c57abfc commit 716ab56Copy full SHA for 716ab56
proto/config.proto
@@ -64,13 +64,13 @@ enum PlatformType {
64
message 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;
+
+ optional LinuxUser LinuxUser = 2;
69
}
70
71
// User specifies linux specific user and group information for the container's
72
// main process.
73
-message linuxUserFields {
+message LinuxUser {
74
// UID is the user id.
75
optional int32 UID = 1;
76
// GID is the group id.
0 commit comments