Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
386c077d
Commit
386c077d
authored
Dec 29, 2017
by
Penghao Cen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move common functions together
parent
a19f6d14
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
134 additions
and
81 deletions
+134
-81
BUILD
test/e2e_node/BUILD
+3
-0
device_plugin.go
test/e2e_node/device_plugin.go
+102
-0
gpu_device_plugin.go
test/e2e_node/gpu_device_plugin.go
+16
-81
util.go
test/e2e_node/util.go
+13
-0
No files found.
test/e2e_node/BUILD
View file @
386c077d
...
@@ -10,6 +10,7 @@ go_library(
...
@@ -10,6 +10,7 @@ go_library(
name = "go_default_library",
name = "go_default_library",
srcs = [
srcs = [
"container.go",
"container.go",
"device_plugin.go",
"doc.go",
"doc.go",
"docker_util.go",
"docker_util.go",
"framework.go",
"framework.go",
...
@@ -32,10 +33,12 @@ go_library(
...
@@ -32,10 +33,12 @@ go_library(
"//pkg/features:go_default_library",
"//pkg/features:go_default_library",
"//pkg/kubelet/apis/cri:go_default_library",
"//pkg/kubelet/apis/cri:go_default_library",
"//pkg/kubelet/apis/cri/v1alpha1/runtime:go_default_library",
"//pkg/kubelet/apis/cri/v1alpha1/runtime:go_default_library",
"//pkg/kubelet/apis/deviceplugin/v1alpha:go_default_library",
"//pkg/kubelet/apis/kubeletconfig:go_default_library",
"//pkg/kubelet/apis/kubeletconfig:go_default_library",
"//pkg/kubelet/apis/kubeletconfig/scheme:go_default_library",
"//pkg/kubelet/apis/kubeletconfig/scheme:go_default_library",
"//pkg/kubelet/apis/kubeletconfig/v1alpha1:go_default_library",
"//pkg/kubelet/apis/kubeletconfig/v1alpha1:go_default_library",
"//pkg/kubelet/apis/stats/v1alpha1:go_default_library",
"//pkg/kubelet/apis/stats/v1alpha1:go_default_library",
"//pkg/kubelet/cm/deviceplugin:go_default_library",
"//pkg/kubelet/metrics:go_default_library",
"//pkg/kubelet/metrics:go_default_library",
"//pkg/kubelet/remote:go_default_library",
"//pkg/kubelet/remote:go_default_library",
"//test/e2e/common:go_default_library",
"//test/e2e/common:go_default_library",
...
...
test/e2e_node/device_plugin.go
0 → 100644
View file @
386c077d
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
e2e_node
import
(
"fmt"
"os"
"path/filepath"
"time"
"regexp"
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
"k8s.io/apimachinery/pkg/util/uuid"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/kubernetes/pkg/features"
"k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig"
"k8s.io/kubernetes/test/e2e/framework"
pluginapi
"k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1alpha"
dp
"k8s.io/kubernetes/pkg/kubelet/cm/deviceplugin"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
)
// makeBusyboxPod returns a simple Pod spec with a pause container
// that requests resourceName and runs the specified command.
func
makeBusyboxPod
(
resourceName
,
cmd
string
)
*
v1
.
Pod
{
podName
:=
"device-plugin-test-"
+
string
(
uuid
.
NewUUID
())
rl
:=
v1
.
ResourceList
{
v1
.
ResourceName
(
resourceName
)
:
*
resource
.
NewQuantity
(
1
,
resource
.
DecimalSI
)}
return
&
v1
.
Pod
{
ObjectMeta
:
metav1
.
ObjectMeta
{
Name
:
podName
},
Spec
:
v1
.
PodSpec
{
RestartPolicy
:
v1
.
RestartPolicyAlways
,
Containers
:
[]
v1
.
Container
{{
Image
:
busyboxImage
,
Name
:
podName
,
// Runs the specified command in the test pod.
Command
:
[]
string
{
"sh"
,
"-c"
,
cmd
},
Resources
:
v1
.
ResourceRequirements
{
Limits
:
rl
,
Requests
:
rl
,
},
}},
},
}
}
// parseLogFromNRuns returns restart count of the specified container
// after it has been restarted at least restartCount times,
// and the matching string for the specified regular expression parsed from the container logs.
func
parseLogFromNRuns
(
f
*
framework
.
Framework
,
podName
string
,
contName
string
,
restartCount
int32
,
re
string
)
(
int32
,
string
)
{
var
count
int32
// Wait till pod has been restarted at least restartCount times.
Eventually
(
func
()
bool
{
p
,
err
:=
f
.
PodClient
()
.
Get
(
podName
,
metav1
.
GetOptions
{})
if
err
!=
nil
||
len
(
p
.
Status
.
ContainerStatuses
)
<
1
{
return
false
}
count
=
p
.
Status
.
ContainerStatuses
[
0
]
.
RestartCount
return
count
>=
restartCount
},
5
*
time
.
Minute
,
framework
.
Poll
)
.
Should
(
BeTrue
())
logs
,
err
:=
framework
.
GetPodLogs
(
f
.
ClientSet
,
f
.
Namespace
.
Name
,
podName
,
contName
)
if
err
!=
nil
{
framework
.
Failf
(
"GetPodLogs for pod %q failed: %v"
,
podName
,
err
)
}
framework
.
Logf
(
"got pod logs: %v"
,
logs
)
regex
:=
regexp
.
MustCompile
(
re
)
matches
:=
regex
.
FindStringSubmatch
(
logs
)
if
len
(
matches
)
<
2
{
return
count
,
""
}
return
count
,
matches
[
1
]
}
// numberOfDevices returns the number of devices of resourceName advertised by a node
func
numberOfDevices
(
node
*
v1
.
Node
,
resourceName
string
)
int64
{
val
,
ok
:=
node
.
Status
.
Capacity
[
v1
.
ResourceName
(
resourceName
)]
if
!
ok
{
return
0
}
return
val
.
Value
()
}
test/e2e_node/gpu_device_plugin.go
View file @
386c077d
...
@@ -17,15 +17,11 @@ limitations under the License.
...
@@ -17,15 +17,11 @@ limitations under the License.
package
e2e_node
package
e2e_node
import
(
import
(
"os/exec"
"regexp"
"strconv"
"strconv"
"time"
"time"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/uuid"
"k8s.io/kubernetes/pkg/features"
"k8s.io/kubernetes/pkg/features"
"k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig"
"k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig"
kubeletmetrics
"k8s.io/kubernetes/pkg/kubelet/metrics"
kubeletmetrics
"k8s.io/kubernetes/pkg/kubelet/metrics"
...
@@ -89,24 +85,28 @@ var _ = framework.KubeDescribe("NVIDIA GPU Device Plugin [Feature:GPUDevicePlugi
...
@@ -89,24 +85,28 @@ var _ = framework.KubeDescribe("NVIDIA GPU Device Plugin [Feature:GPUDevicePlugi
It
(
"checks that when Kubelet restarts exclusive GPU assignation to pods is kept."
,
func
()
{
It
(
"checks that when Kubelet restarts exclusive GPU assignation to pods is kept."
,
func
()
{
By
(
"Creating one GPU pod on a node with at least two GPUs"
)
By
(
"Creating one GPU pod on a node with at least two GPUs"
)
p1
:=
f
.
PodClient
()
.
CreateSync
(
makeCudaPauseImage
())
podRECMD
:=
"devs=$(ls /dev/ | egrep '^nvidia[0-9]+$') && echo gpu devices: $devs"
count1
,
devId1
:=
getDeviceId
(
f
,
p1
.
Name
,
p1
.
Name
,
1
)
p1
:=
f
.
PodClient
()
.
CreateSync
(
makeBusyboxPod
(
framework
.
NVIDIAGPUResourceName
,
podRECMD
))
deviceIDRE
:=
"gpu devices: (nvidia[0-9]+)"
count1
,
devId1
:=
parseLogFromNRuns
(
f
,
p1
.
Name
,
p1
.
Name
,
1
,
deviceIDRE
)
p1
,
err
:=
f
.
PodClient
()
.
Get
(
p1
.
Name
,
metav1
.
GetOptions
{})
p1
,
err
:=
f
.
PodClient
()
.
Get
(
p1
.
Name
,
metav1
.
GetOptions
{})
framework
.
ExpectNoError
(
err
)
framework
.
ExpectNoError
(
err
)
By
(
"Restarting Kubelet and waiting for the current running pod to restart"
)
By
(
"Restarting Kubelet and waiting for the current running pod to restart"
)
restartKubelet
(
f
)
restartKubelet
()
By
(
"Confirming that after a kubelet and pod restart, GPU assignement is kept"
)
By
(
"Confirming that after a kubelet and pod restart, GPU assignement is kept"
)
count1
,
devIdRestart1
:=
getDeviceId
(
f
,
p1
.
Name
,
p1
.
Name
,
count1
+
1
)
count1
,
devIdRestart1
:=
parseLogFromNRuns
(
f
,
p1
.
Name
,
p1
.
Name
,
count1
+
1
,
deviceIDRE
)
Expect
(
devIdRestart1
)
.
To
(
Equal
(
devId1
))
Expect
(
devIdRestart1
)
.
To
(
Equal
(
devId1
))
By
(
"Restarting Kubelet and creating another pod"
)
By
(
"Restarting Kubelet and creating another pod"
)
restartKubelet
(
f
)
restartKubelet
()
p2
:=
f
.
PodClient
()
.
CreateSync
(
make
CudaPauseImage
(
))
p2
:=
f
.
PodClient
()
.
CreateSync
(
make
BusyboxPod
(
framework
.
NVIDIAGPUResourceName
,
podRECMD
))
By
(
"Checking that pods got a different GPU"
)
By
(
"Checking that pods got a different GPU"
)
count2
,
devId2
:=
getDeviceId
(
f
,
p2
.
Name
,
p2
.
Name
,
1
)
count2
,
devId2
:=
parseLogFromNRuns
(
f
,
p2
.
Name
,
p2
.
Name
,
1
,
deviceIDRE
)
Expect
(
devId1
)
.
To
(
Not
(
Equal
(
devId2
)))
Expect
(
devId1
)
.
To
(
Not
(
Equal
(
devId2
)))
By
(
"Deleting device plugin."
)
By
(
"Deleting device plugin."
)
...
@@ -118,16 +118,16 @@ var _ = framework.KubeDescribe("NVIDIA GPU Device Plugin [Feature:GPUDevicePlugi
...
@@ -118,16 +118,16 @@ var _ = framework.KubeDescribe("NVIDIA GPU Device Plugin [Feature:GPUDevicePlugi
return
framework
.
NumberOfNVIDIAGPUs
(
node
)
<=
0
return
framework
.
NumberOfNVIDIAGPUs
(
node
)
<=
0
},
10
*
time
.
Minute
,
framework
.
Poll
)
.
Should
(
BeTrue
())
},
10
*
time
.
Minute
,
framework
.
Poll
)
.
Should
(
BeTrue
())
By
(
"Checking that scheduled pods can continue to run even after we delete device plugin."
)
By
(
"Checking that scheduled pods can continue to run even after we delete device plugin."
)
count1
,
devIdRestart1
=
getDeviceId
(
f
,
p1
.
Name
,
p1
.
Name
,
count1
+
1
)
count1
,
devIdRestart1
=
parseLogFromNRuns
(
f
,
p1
.
Name
,
p1
.
Name
,
count1
+
1
,
deviceIDRE
)
Expect
(
devIdRestart1
)
.
To
(
Equal
(
devId1
))
Expect
(
devIdRestart1
)
.
To
(
Equal
(
devId1
))
count2
,
devIdRestart2
:=
getDeviceId
(
f
,
p2
.
Name
,
p2
.
Name
,
count2
+
1
)
count2
,
devIdRestart2
:=
parseLogFromNRuns
(
f
,
p2
.
Name
,
p2
.
Name
,
count2
+
1
,
deviceIDRE
)
Expect
(
devIdRestart2
)
.
To
(
Equal
(
devId2
))
Expect
(
devIdRestart2
)
.
To
(
Equal
(
devId2
))
By
(
"Restarting Kubelet."
)
By
(
"Restarting Kubelet."
)
restartKubelet
(
f
)
restartKubelet
()
By
(
"Checking that scheduled pods can continue to run even after we delete device plugin and restart Kubelet."
)
By
(
"Checking that scheduled pods can continue to run even after we delete device plugin and restart Kubelet."
)
count1
,
devIdRestart1
=
getDeviceId
(
f
,
p1
.
Name
,
p1
.
Name
,
count1
+
2
)
count1
,
devIdRestart1
=
parseLogFromNRuns
(
f
,
p1
.
Name
,
p1
.
Name
,
count1
+
2
,
deviceIDRE
)
Expect
(
devIdRestart1
)
.
To
(
Equal
(
devId1
))
Expect
(
devIdRestart1
)
.
To
(
Equal
(
devId1
))
count2
,
devIdRestart2
=
getDeviceId
(
f
,
p2
.
Name
,
p2
.
Name
,
count2
+
2
)
count2
,
devIdRestart2
=
parseLogFromNRuns
(
f
,
p2
.
Name
,
p2
.
Name
,
count2
+
2
,
deviceIDRE
)
Expect
(
devIdRestart2
)
.
To
(
Equal
(
devId2
))
Expect
(
devIdRestart2
)
.
To
(
Equal
(
devId2
))
logDevicePluginMetrics
()
logDevicePluginMetrics
()
...
@@ -165,68 +165,3 @@ func logDevicePluginMetrics() {
...
@@ -165,68 +165,3 @@ func logDevicePluginMetrics() {
}
}
}
}
}
}
func
makeCudaPauseImage
()
*
v1
.
Pod
{
podName
:=
testPodNamePrefix
+
string
(
uuid
.
NewUUID
())
return
&
v1
.
Pod
{
ObjectMeta
:
metav1
.
ObjectMeta
{
Name
:
podName
},
Spec
:
v1
.
PodSpec
{
RestartPolicy
:
v1
.
RestartPolicyAlways
,
Containers
:
[]
v1
.
Container
{{
Image
:
busyboxImage
,
Name
:
podName
,
// Retrieves the gpu devices created in the user pod.
// Note the nvidia device plugin implementation doesn't do device id remapping currently.
// Will probably need to use nvidia-smi if that changes.
Command
:
[]
string
{
"sh"
,
"-c"
,
"devs=$(ls /dev/ | egrep '^nvidia[0-9]+$') && echo gpu devices: $devs"
},
Resources
:
v1
.
ResourceRequirements
{
Limits
:
newDecimalResourceList
(
framework
.
NVIDIAGPUResourceName
,
1
),
Requests
:
newDecimalResourceList
(
framework
.
NVIDIAGPUResourceName
,
1
),
},
}},
},
}
}
func
newDecimalResourceList
(
name
v1
.
ResourceName
,
quantity
int64
)
v1
.
ResourceList
{
return
v1
.
ResourceList
{
name
:
*
resource
.
NewQuantity
(
quantity
,
resource
.
DecimalSI
)}
}
// TODO: Find a uniform way to deal with systemctl/initctl/service operations. #34494
func
restartKubelet
(
f
*
framework
.
Framework
)
{
stdout
,
err
:=
exec
.
Command
(
"sudo"
,
"systemctl"
,
"list-units"
,
"kubelet*"
,
"--state=running"
)
.
CombinedOutput
()
framework
.
ExpectNoError
(
err
)
regex
:=
regexp
.
MustCompile
(
"(kubelet-[0-9]+)"
)
matches
:=
regex
.
FindStringSubmatch
(
string
(
stdout
))
Expect
(
len
(
matches
))
.
NotTo
(
BeZero
())
kube
:=
matches
[
0
]
framework
.
Logf
(
"Get running kubelet with systemctl: %v, %v"
,
string
(
stdout
),
kube
)
stdout
,
err
=
exec
.
Command
(
"sudo"
,
"systemctl"
,
"restart"
,
kube
)
.
CombinedOutput
()
framework
.
ExpectNoError
(
err
,
"Failed to restart kubelet with systemctl: %v, %v"
,
err
,
stdout
)
}
func
getDeviceId
(
f
*
framework
.
Framework
,
podName
string
,
contName
string
,
restartCount
int32
)
(
int32
,
string
)
{
var
count
int32
// Wait till pod has been restarted at least restartCount times.
Eventually
(
func
()
bool
{
p
,
err
:=
f
.
PodClient
()
.
Get
(
podName
,
metav1
.
GetOptions
{})
if
err
!=
nil
||
len
(
p
.
Status
.
ContainerStatuses
)
<
1
{
return
false
}
count
=
p
.
Status
.
ContainerStatuses
[
0
]
.
RestartCount
return
count
>=
restartCount
},
5
*
time
.
Minute
,
framework
.
Poll
)
.
Should
(
BeTrue
())
logs
,
err
:=
framework
.
GetPodLogs
(
f
.
ClientSet
,
f
.
Namespace
.
Name
,
podName
,
contName
)
if
err
!=
nil
{
framework
.
Failf
(
"GetPodLogs for pod %q failed: %v"
,
podName
,
err
)
}
framework
.
Logf
(
"got pod logs: %v"
,
logs
)
regex
:=
regexp
.
MustCompile
(
"gpu devices: (nvidia[0-9]+)"
)
matches
:=
regex
.
FindStringSubmatch
(
logs
)
if
len
(
matches
)
<
2
{
return
count
,
""
}
return
count
,
matches
[
1
]
}
test/e2e_node/util.go
View file @
386c077d
...
@@ -389,3 +389,16 @@ func getCRIClient() (internalapi.RuntimeService, internalapi.ImageManagerService
...
@@ -389,3 +389,16 @@ func getCRIClient() (internalapi.RuntimeService, internalapi.ImageManagerService
}
}
return
r
,
i
,
nil
return
r
,
i
,
nil
}
}
// TODO: Find a uniform way to deal with systemctl/initctl/service operations. #34494
func
restartKubelet
()
{
stdout
,
err
:=
exec
.
Command
(
"sudo"
,
"systemctl"
,
"list-units"
,
"kubelet*"
,
"--state=running"
)
.
CombinedOutput
()
framework
.
ExpectNoError
(
err
)
regex
:=
regexp
.
MustCompile
(
"(kubelet-[0-9]+)"
)
matches
:=
regex
.
FindStringSubmatch
(
string
(
stdout
))
Expect
(
len
(
matches
))
.
NotTo
(
BeZero
())
kube
:=
matches
[
0
]
framework
.
Logf
(
"Get running kubelet with systemctl: %v, %v"
,
string
(
stdout
),
kube
)
stdout
,
err
=
exec
.
Command
(
"sudo"
,
"systemctl"
,
"restart"
,
kube
)
.
CombinedOutput
()
framework
.
ExpectNoError
(
err
,
"Failed to restart kubelet with systemctl: %v, %v"
,
err
,
stdout
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment