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
14d9a0f2
Commit
14d9a0f2
authored
Dec 20, 2015
by
Isaac Hollander McCreery
Committed by
Isaac Hollander McCreery
Dec 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Label slow tests [Slow]
parent
4ca66d2a
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
8 deletions
+18
-8
garbage_collector.go
test/e2e/garbage_collector.go
+3
-1
ingress.go
test/e2e/ingress.go
+2
-1
kubelet_perf.go
test/e2e/kubelet_perf.go
+2
-1
kubeproxy.go
test/e2e/kubeproxy.go
+2
-1
pods.go
test/e2e/pods.go
+4
-2
resize_nodes.go
test/e2e/resize_nodes.go
+2
-1
scheduler_predicates.go
test/e2e/scheduler_predicates.go
+3
-1
No files found.
test/e2e/garbage_collector.go
View file @
14d9a0f2
...
@@ -27,7 +27,9 @@ import (
...
@@ -27,7 +27,9 @@ import (
)
)
// This test requires that --terminated-pod-gc-threshold=100 be set on the controller manager
// This test requires that --terminated-pod-gc-threshold=100 be set on the controller manager
var
_
=
Describe
(
"Garbage collector"
,
func
()
{
//
// Slow by design (7 min)
var
_
=
Describe
(
"Garbage collector [Slow]"
,
func
()
{
f
:=
NewFramework
(
"garbage-collector"
)
f
:=
NewFramework
(
"garbage-collector"
)
It
(
"should handle the creation of 1000 pods"
,
func
()
{
It
(
"should handle the creation of 1000 pods"
,
func
()
{
SkipUnlessProviderIs
(
"gce"
)
SkipUnlessProviderIs
(
"gce"
)
...
...
test/e2e/ingress.go
View file @
14d9a0f2
...
@@ -376,7 +376,8 @@ func (cont *IngressController) Cleanup(del bool) error {
...
@@ -376,7 +376,8 @@ func (cont *IngressController) Cleanup(del bool) error {
return
fmt
.
Errorf
(
errMsg
)
return
fmt
.
Errorf
(
errMsg
)
}
}
var
_
=
Describe
(
"GCE L7 LoadBalancer Controller [Serial]"
,
func
()
{
// Slow by design (10 min)
var
_
=
Describe
(
"GCE L7 LoadBalancer Controller [Serial] [Slow]"
,
func
()
{
// These variables are initialized after framework's beforeEach.
// These variables are initialized after framework's beforeEach.
var
ns
string
var
ns
string
var
addonDir
string
var
addonDir
string
...
...
test/e2e/kubelet_perf.go
View file @
14d9a0f2
...
@@ -138,7 +138,8 @@ func verifyCPULimits(expected containersCPUSummary, actual nodesCPUSummary) {
...
@@ -138,7 +138,8 @@ func verifyCPULimits(expected containersCPUSummary, actual nodesCPUSummary) {
}
}
}
}
var
_
=
Describe
(
"Kubelet [Serial]"
,
func
()
{
// Slow by design (1 hour)
var
_
=
Describe
(
"Kubelet [Serial] [Slow]"
,
func
()
{
var
nodeNames
sets
.
String
var
nodeNames
sets
.
String
framework
:=
NewFramework
(
"kubelet-perf"
)
framework
:=
NewFramework
(
"kubelet-perf"
)
var
rm
*
resourceMonitor
var
rm
*
resourceMonitor
...
...
test/e2e/kubeproxy.go
View file @
14d9a0f2
...
@@ -71,7 +71,8 @@ var _ = Describe("KubeProxy", func() {
...
@@ -71,7 +71,8 @@ var _ = Describe("KubeProxy", func() {
f
:
f
,
f
:
f
,
}
}
It
(
"should test kube-proxy"
,
func
()
{
// Slow issue #14204 (10 min)
It
(
"should test kube-proxy [Slow]"
,
func
()
{
By
(
"cleaning up any pre-existing namespaces used by this test"
)
By
(
"cleaning up any pre-existing namespaces used by this test"
)
config
.
cleanup
()
config
.
cleanup
()
...
...
test/e2e/pods.go
View file @
14d9a0f2
...
@@ -635,7 +635,8 @@ var _ = Describe("Pods", func() {
...
@@ -635,7 +635,8 @@ var _ = Describe("Pods", func() {
},
1
,
defaultObservationTimeout
)
},
1
,
defaultObservationTimeout
)
})
})
It
(
"should have monotonically increasing restart count [Conformance]"
,
func
()
{
// Slow by design (5 min)
It
(
"should have monotonically increasing restart count [Conformance] [Slow]"
,
func
()
{
runLivenessTest
(
framework
.
Client
,
framework
.
Namespace
.
Name
,
&
api
.
Pod
{
runLivenessTest
(
framework
.
Client
,
framework
.
Namespace
.
Name
,
&
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"liveness-http"
,
Name
:
"liveness-http"
,
...
@@ -936,7 +937,8 @@ var _ = Describe("Pods", func() {
...
@@ -936,7 +937,8 @@ var _ = Describe("Pods", func() {
}
}
})
})
It
(
"should cap back-off at MaxContainerBackOff"
,
func
()
{
// Slow issue #19027 (20 mins)
It
(
"should cap back-off at MaxContainerBackOff [Slow]"
,
func
()
{
podClient
:=
framework
.
Client
.
Pods
(
framework
.
Namespace
.
Name
)
podClient
:=
framework
.
Client
.
Pods
(
framework
.
Namespace
.
Name
)
podName
:=
"back-off-cap"
podName
:=
"back-off-cap"
containerName
:=
"back-off-cap"
containerName
:=
"back-off-cap"
...
...
test/e2e/resize_nodes.go
View file @
14d9a0f2
...
@@ -402,7 +402,8 @@ var _ = Describe("Nodes [Disruptive]", func() {
...
@@ -402,7 +402,8 @@ var _ = Describe("Nodes [Disruptive]", func() {
systemPodsNo
=
len
(
systemPods
.
Items
)
systemPodsNo
=
len
(
systemPods
.
Items
)
})
})
Describe
(
"Resize"
,
func
()
{
// Slow issue #13323 (8 min)
Describe
(
"Resize [Slow]"
,
func
()
{
var
skipped
bool
var
skipped
bool
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
...
...
test/e2e/scheduler_predicates.go
View file @
14d9a0f2
...
@@ -200,7 +200,9 @@ var _ = Describe("SchedulerPredicates [Serial]", func() {
...
@@ -200,7 +200,9 @@ var _ = Describe("SchedulerPredicates [Serial]", func() {
// This test verifies that max-pods flag works as advertised. It assumes that cluster add-on pods stay stable
// This test verifies that max-pods flag works as advertised. It assumes that cluster add-on pods stay stable
// and cannot be run in parallel with any other test that touches Nodes or Pods. It is so because to check
// and cannot be run in parallel with any other test that touches Nodes or Pods. It is so because to check
// if max-pods is working we need to fully saturate the cluster and keep it in this state for few seconds.
// if max-pods is working we need to fully saturate the cluster and keep it in this state for few seconds.
It
(
"validates MaxPods limit number of pods that are allowed to run"
,
func
()
{
//
// Slow PR #13315 (8 min)
It
(
"validates MaxPods limit number of pods that are allowed to run [Slow]"
,
func
()
{
totalPodCapacity
=
0
totalPodCapacity
=
0
for
_
,
node
:=
range
nodeList
.
Items
{
for
_
,
node
:=
range
nodeList
.
Items
{
...
...
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