mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 01:06:27 +00:00
Merge pull request #18208 from wojtek-t/dont_run_3podpernode_in_scalability
Auto commit by PR queue bot
This commit is contained in:
commit
571839923c
@ -47,7 +47,7 @@ const (
|
|||||||
// 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 _ = Describe("[Performance] Load capacity [Skipped]", func() {
|
var _ = Describe("Load capacity [Skipped]", func() {
|
||||||
var c *client.Client
|
var c *client.Client
|
||||||
var nodeCount int
|
var nodeCount int
|
||||||
var ns string
|
var ns string
|
||||||
@ -100,6 +100,9 @@ var _ = Describe("[Performance] Load capacity [Skipped]", func() {
|
|||||||
|
|
||||||
for _, testArg := range loadTests {
|
for _, testArg := range loadTests {
|
||||||
name := fmt.Sprintf("should be able to handle %v pods per node", testArg.podsPerNode)
|
name := fmt.Sprintf("should be able to handle %v pods per node", testArg.podsPerNode)
|
||||||
|
if testArg.podsPerNode == 30 {
|
||||||
|
name = "[Performance] " + name
|
||||||
|
}
|
||||||
itArg := testArg
|
itArg := testArg
|
||||||
|
|
||||||
It(name, func() {
|
It(name, func() {
|
||||||
|
Loading…
Reference in New Issue
Block a user