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
040b80d9
Commit
040b80d9
authored
Nov 22, 2017
by
Aaron Crickenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add [sig-node] to some unowned e2e_node tests
Follow the SIGDescribe pattern used in test/e2e/foo tests
parent
d65a8ac9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
3 deletions
+27
-3
BUILD
test/e2e_node/BUILD
+1
-0
cpu_manager_test.go
test/e2e_node/cpu_manager_test.go
+1
-1
dockershim_checkpoint_test.go
test/e2e_node/dockershim_checkpoint_test.go
+1
-1
framework.go
test/e2e_node/framework.go
+23
-0
resource_usage_test.go
test/e2e_node/resource_usage_test.go
+1
-1
No files found.
test/e2e_node/BUILD
View file @
040b80d9
...
...
@@ -12,6 +12,7 @@ go_library(
"container.go",
"doc.go",
"docker_util.go",
"framework.go",
"gpu_device_plugin.go",
"gpus.go",
"image_list.go",
...
...
test/e2e_node/cpu_manager_test.go
View file @
040b80d9
...
...
@@ -415,7 +415,7 @@ func runCPUManagerTests(f *framework.Framework) {
}
// Serial because the test updates kubelet configuration.
var
_
=
framework
.
Kube
Describe
(
"CPU Manager [Feature:CPUManager]"
,
func
()
{
var
_
=
SIG
Describe
(
"CPU Manager [Feature:CPUManager]"
,
func
()
{
f
:=
framework
.
NewDefaultFramework
(
"cpu-manager-test"
)
Context
(
"With kubeconfig updated with static CPU Manager policy run the CPU Manager tests"
,
func
()
{
...
...
test/e2e_node/dockershim_checkpoint_test.go
View file @
040b80d9
...
...
@@ -42,7 +42,7 @@ const (
testCheckpointContent
=
`{"version":"v1","name":"fluentd-gcp-v2.0-vmnqx","namespace":"kube-system","data":{},"checksum":1799154314}`
)
var
_
=
framework
.
Kube
Describe
(
"Dockershim [Serial] [Disruptive] [Feature:Docker]"
,
func
()
{
var
_
=
SIG
Describe
(
"Dockershim [Serial] [Disruptive] [Feature:Docker]"
,
func
()
{
f
:=
framework
.
NewDefaultFramework
(
"dockerhism-checkpoint-test"
)
It
(
"should clean up pod sandbox checkpoint after pod deletion"
,
func
()
{
...
...
test/e2e_node/framework.go
0 → 100644
View file @
040b80d9
/*
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
"github.com/onsi/ginkgo"
func
SIGDescribe
(
text
string
,
body
func
())
bool
{
return
ginkgo
.
Describe
(
"[sig-node] "
+
text
,
body
)
}
test/e2e_node/resource_usage_test.go
View file @
040b80d9
...
...
@@ -31,7 +31,7 @@ import (
.
"github.com/onsi/gomega"
)
var
_
=
framework
.
Kube
Describe
(
"Resource-usage [Serial] [Slow]"
,
func
()
{
var
_
=
SIG
Describe
(
"Resource-usage [Serial] [Slow]"
,
func
()
{
const
(
// Interval to poll /stats/container on a node
containerStatsPollingPeriod
=
10
*
time
.
Second
...
...
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