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
6e1fbf32
Commit
6e1fbf32
authored
Aug 25, 2017
by
Andrzej Wasylkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made the tests ensure that Cluster Autoscaler is on before running.
parent
07dea6b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
cluster_autoscaler_scalability.go
test/e2e/autoscaling/cluster_autoscaler_scalability.go
+6
-0
No files found.
test/e2e/autoscaling/cluster_autoscaler_scalability.go
View file @
6e1fbf32
...
@@ -69,6 +69,12 @@ var _ = framework.KubeDescribe("Cluster size autoscaler scalability [Slow]", fun
...
@@ -69,6 +69,12 @@ var _ = framework.KubeDescribe("Cluster size autoscaler scalability [Slow]", fun
BeforeEach
(
func
()
{
BeforeEach
(
func
()
{
framework
.
SkipUnlessProviderIs
(
"gce"
,
"gke"
,
"kubemark"
)
framework
.
SkipUnlessProviderIs
(
"gce"
,
"gke"
,
"kubemark"
)
// Check if Cloud Autoscaler is enabled by trying to get its ConfigMap.
_
,
err
:=
f
.
ClientSet
.
CoreV1
()
.
ConfigMaps
(
"kube-system"
)
.
Get
(
"cluster-autoscaler-status"
,
metav1
.
GetOptions
{})
if
err
!=
nil
{
framework
.
Skipf
(
"test expects Cluster Autoscaler to be enabled"
)
}
c
=
f
.
ClientSet
c
=
f
.
ClientSet
if
originalSizes
==
nil
{
if
originalSizes
==
nil
{
originalSizes
=
make
(
map
[
string
]
int
)
originalSizes
=
make
(
map
[
string
]
int
)
...
...
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