Merge pull request #11567 from klihub/fixes/2.0/ci-lint-errors
[release/2.0] Fix CI lint error (cherry-picked #11555)
This commit is contained in:
commit
dcd661b138
@ -595,13 +595,13 @@ func WithUser(userstr string) SpecOpts {
|
||||
setProcess(s)
|
||||
s.Process.User.AdditionalGids = nil
|
||||
// While the Linux kernel allows the max UID to be MaxUint32 - 2,
|
||||
// and the OCI Runtime Spec has no definition about the max UID,
|
||||
// the runc implementation is known to require the UID to be <= MaxInt32.
|
||||
//
|
||||
// containerd follows runc's limitation here.
|
||||
//
|
||||
// In future we may relax this limitation to allow MaxUint32 - 2,
|
||||
// or, amend the OCI Runtime Spec to codify the implementation limitation.
|
||||
// and the OCI Runtime Spec has no definition about the max UID,
|
||||
// the runc implementation is known to require the UID to be <= MaxInt32.
|
||||
//
|
||||
// containerd follows runc's limitation here.
|
||||
//
|
||||
// In future we may relax this limitation to allow MaxUint32 - 2,
|
||||
// or, amend the OCI Runtime Spec to codify the implementation limitation.
|
||||
const (
|
||||
minUserID = 0
|
||||
maxUserID = math.MaxInt32
|
||||
|
@ -105,7 +105,6 @@ guest:x:100:guest
|
||||
},
|
||||
}
|
||||
for _, testCase := range testCases {
|
||||
testCase := testCase
|
||||
t.Run(testCase.user, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
s := Spec{
|
||||
|
Loading…
Reference in New Issue
Block a user