Remove all references to types.UnixUserID and types.UnixGroupID
This commit is contained in:
@@ -21,7 +21,6 @@ import (
|
||||
"path"
|
||||
"time"
|
||||
|
||||
"k8s.io/apimachinery/pkg/types"
|
||||
"k8s.io/apimachinery/pkg/util/uuid"
|
||||
"k8s.io/kubernetes/pkg/api/v1"
|
||||
"k8s.io/kubernetes/pkg/kubelet/images"
|
||||
@@ -130,8 +129,8 @@ while true; do sleep 1; done
|
||||
}
|
||||
})
|
||||
|
||||
rootUser := types.UnixUserID(0)
|
||||
nonRootUser := types.UnixUserID(10000)
|
||||
rootUser := int64(0)
|
||||
nonRootUser := int64(10000)
|
||||
for _, testCase := range []struct {
|
||||
name string
|
||||
container v1.Container
|
||||
|
Reference in New Issue
Block a user