mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 12:18:16 +00:00 
			
		
		
		
	Add [sig-scalability] prefix to scalability e2e tests
This commit is contained in:
		@@ -12,6 +12,7 @@ go_library(
 | 
				
			|||||||
    srcs = [
 | 
					    srcs = [
 | 
				
			||||||
        "density.go",
 | 
					        "density.go",
 | 
				
			||||||
        "empty.go",
 | 
					        "empty.go",
 | 
				
			||||||
 | 
					        "framework.go",
 | 
				
			||||||
        "load.go",
 | 
					        "load.go",
 | 
				
			||||||
    ],
 | 
					    ],
 | 
				
			||||||
    tags = ["automanaged"],
 | 
					    tags = ["automanaged"],
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -296,7 +296,7 @@ func cleanupDensityTest(dtc DensityTestConfig) {
 | 
				
			|||||||
// IMPORTANT: This test is designed to work on large (>= 100 Nodes) clusters. For smaller ones
 | 
					// 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
 | 
					// results will not be representative for control-plane performance as we'll start hitting
 | 
				
			||||||
// limits on Docker's concurrent container startup.
 | 
					// limits on Docker's concurrent container startup.
 | 
				
			||||||
var _ = framework.KubeDescribe("Density", func() {
 | 
					var _ = SIGDescribe("Density", func() {
 | 
				
			||||||
	var c clientset.Interface
 | 
						var c clientset.Interface
 | 
				
			||||||
	var nodeCount int
 | 
						var nodeCount int
 | 
				
			||||||
	var additionalPodsPrefix string
 | 
						var additionalPodsPrefix string
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,7 +26,7 @@ import (
 | 
				
			|||||||
	. "github.com/onsi/ginkgo"
 | 
						. "github.com/onsi/ginkgo"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var _ = framework.KubeDescribe("Empty [Feature:Empty]", func() {
 | 
					var _ = SIGDescribe("Empty [Feature:Empty]", func() {
 | 
				
			||||||
	f := framework.NewDefaultFramework("empty")
 | 
						f := framework.NewDefaultFramework("empty")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	BeforeEach(func() {
 | 
						BeforeEach(func() {
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										23
									
								
								test/e2e/scalability/framework.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								test/e2e/scalability/framework.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					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)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -78,7 +78,7 @@ var knownKinds = []schema.GroupKind{
 | 
				
			|||||||
// the ginkgo.skip list (see driver.go).
 | 
					// the ginkgo.skip list (see driver.go).
 | 
				
			||||||
// To run this suite you must explicitly ask for it by setting the
 | 
					// To run this suite you must explicitly ask for it by setting the
 | 
				
			||||||
// -t/--test flag or ginkgo.focus flag.
 | 
					// -t/--test flag or ginkgo.focus flag.
 | 
				
			||||||
var _ = framework.KubeDescribe("Load capacity", func() {
 | 
					var _ = SIGDescribe("Load capacity", func() {
 | 
				
			||||||
	var clientset clientset.Interface
 | 
						var clientset clientset.Interface
 | 
				
			||||||
	var nodeCount int
 | 
						var nodeCount int
 | 
				
			||||||
	var ns string
 | 
						var ns string
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user