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
4edae0aa
Commit
4edae0aa
authored
Aug 02, 2017
by
xiangpengzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add [sig-scalability] prefix to scalability e2e tests
parent
bcc43f8f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
3 deletions
+27
-3
BUILD
test/e2e/scalability/BUILD
+1
-0
density.go
test/e2e/scalability/density.go
+1
-1
empty.go
test/e2e/scalability/empty.go
+1
-1
framework.go
test/e2e/scalability/framework.go
+23
-0
load.go
test/e2e/scalability/load.go
+1
-1
No files found.
test/e2e/scalability/BUILD
View file @
4edae0aa
...
...
@@ -12,6 +12,7 @@ go_library(
srcs = [
"density.go",
"empty.go",
"framework.go",
"load.go",
],
tags = ["automanaged"],
...
...
test/e2e/scalability/density.go
View file @
4edae0aa
...
...
@@ -296,7 +296,7 @@ func cleanupDensityTest(dtc DensityTestConfig) {
// IMPORTANT: This test is designed to work on large (>= 100 Nodes) clusters. For smaller ones
// results will not be representative for control-plane performance as we'll start hitting
// limits on Docker's concurrent container startup.
var
_
=
framework
.
Kube
Describe
(
"Density"
,
func
()
{
var
_
=
SIG
Describe
(
"Density"
,
func
()
{
var
c
clientset
.
Interface
var
nodeCount
int
var
additionalPodsPrefix
string
...
...
test/e2e/scalability/empty.go
View file @
4edae0aa
...
...
@@ -26,7 +26,7 @@ import (
.
"github.com/onsi/ginkgo"
)
var
_
=
framework
.
Kube
Describe
(
"Empty [Feature:Empty]"
,
func
()
{
var
_
=
SIG
Describe
(
"Empty [Feature:Empty]"
,
func
()
{
f
:=
framework
.
NewDefaultFramework
(
"empty"
)
BeforeEach
(
func
()
{
...
...
test/e2e/scalability/framework.go
0 → 100644
View file @
4edae0aa
/*
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
scalability
import
"github.com/onsi/ginkgo"
func
SIGDescribe
(
text
string
,
body
func
())
bool
{
return
ginkgo
.
Describe
(
"[sig-scalability] "
+
text
,
body
)
}
test/e2e/scalability/load.go
View file @
4edae0aa
...
...
@@ -78,7 +78,7 @@ var knownKinds = []schema.GroupKind{
// the ginkgo.skip list (see driver.go).
// To run this suite you must explicitly ask for it by setting the
// -t/--test flag or ginkgo.focus flag.
var
_
=
framework
.
Kube
Describe
(
"Load capacity"
,
func
()
{
var
_
=
SIG
Describe
(
"Load capacity"
,
func
()
{
var
clientset
clientset
.
Interface
var
nodeCount
int
var
ns
string
...
...
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