Skip to content

Commit

Permalink
Improve cluster autoscaler e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavmpandey08 authored and sp1999 committed Jun 11, 2024
1 parent 505b20b commit a5118af
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 49 deletions.
37 changes: 17 additions & 20 deletions test/framework/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ const (
//go:embed testdata/oidc-roles.yaml
var oidcRoles []byte

//go:embed testdata/hpa_busybox.yaml
var hpaBusybox []byte
//go:embed testdata/autoscaler_load.yaml
var autoscalerLoad []byte

type ClusterE2ETest struct {
T T
Expand Down Expand Up @@ -1992,49 +1992,46 @@ func (e *ClusterE2ETest) InstallAutoScalerWithMetricServer(targetNamespace strin
// CombinedAutoScalerMetricServerTest verifies that new nodes are spun up after using a HPA to scale a deployment.
func (e *ClusterE2ETest) CombinedAutoScalerMetricServerTest(autoscalerName, metricServerName, targetNamespace string, mgmtCluster *types.Cluster) {
ctx := context.Background()
ns := "default"
name := "hpa-busybox-test"
machineDeploymentName := e.ClusterName + "-" + "md-0"
autoscalerDeploymentName := "cluster-autoscaler-clusterapi-cluster-autoscaler"

e.VerifyMetricServerPackageInstalled(metricServerName, targetNamespace, mgmtCluster)
e.VerifyAutoScalerPackageInstalled(autoscalerName, targetNamespace, mgmtCluster)

e.T.Log("Metrics Server and Cluster Autoscaler ready")

err := e.KubectlClient.ApplyKubeSpecFromBytes(ctx, mgmtCluster, hpaBusybox)
if err != nil {
e.T.Fatalf("Failed to apply hpa busybox load %s", err)
}

e.T.Log("Deploying test workload")

err = e.KubectlClient.WaitForDeployment(ctx,
e.Cluster(), "5m", "Available", name, ns)
err := e.KubectlClient.ApplyKubeSpecFromBytes(ctx, mgmtCluster, autoscalerLoad)
if err != nil {
e.T.Fatalf("Failed waiting for test workload deployent %s", err)
e.T.Fatalf("Failed to apply autoscaler load %s", err)
}

params := []string{"autoscale", "deployment", name, "--cpu-percent=50", "--min=1", "--max=20", "--kubeconfig", e.KubeconfigFilePath()}
_, err = e.KubectlClient.ExecuteCommand(ctx, params...)
// There is a bug in cluster autoscaler currently where it's not able to autoscale the cluster
// because of missing permissions on infrastructure machine template.
// Cluster Autoscaler does restart after ~10 min after which it starts functioning normally.
// We are force triggering a restart so the e2e doesn't have to wait 10 min for the restart.
// This can be removed once the following issue is resolve upstream.
// https://github.com/kubernetes/autoscaler/issues/6490
_, err = e.KubectlClient.ExecuteCommand(ctx, "rollout", "restart", "deployment", "-n", targetNamespace, autoscalerDeploymentName, "--kubeconfig", e.KubeconfigFilePath())
if err != nil {
e.T.Fatalf("Failed to autoscale deployent: %s", err)
e.T.Fatalf("Failed to rollout cluster autoscaler %s", err)
}
e.VerifyAutoScalerPackageInstalled(autoscalerName, targetNamespace, mgmtCluster)

e.T.Log("Waiting for machinedeployment to begin scaling up")
err = e.KubectlClient.WaitJSONPathLoop(ctx, mgmtCluster.KubeconfigFile, "20m", "status.phase", "ScalingUp",
err = e.KubectlClient.WaitJSONPathLoop(ctx, mgmtCluster.KubeconfigFile, "10m", "status.phase", "ScalingUp",
fmt.Sprintf("machinedeployments.cluster.x-k8s.io/%s", machineDeploymentName), constants.EksaSystemNamespace)
if err != nil {
e.T.Fatalf("Failed to get ScalingUp phase for machinedeployment: %s", err)
}

e.T.Log("Waiting for machinedeployment to finish scaling up")
err = e.KubectlClient.WaitJSONPathLoop(ctx, mgmtCluster.KubeconfigFile, "15m", "status.phase", "Running",
err = e.KubectlClient.WaitJSONPathLoop(ctx, mgmtCluster.KubeconfigFile, "20m", "status.phase", "Running",
fmt.Sprintf("machinedeployments.cluster.x-k8s.io/%s", machineDeploymentName), constants.EksaSystemNamespace)
if err != nil {
e.T.Fatalf("Failed to get Running phase for machinedeployment: %s", err)
}

err = e.KubectlClient.WaitForMachineDeploymentReady(ctx, mgmtCluster, "2m",
err = e.KubectlClient.WaitForMachineDeploymentReady(ctx, mgmtCluster, "5m",
machineDeploymentName)
if err != nil {
e.T.Fatalf("Machine deployment stuck in scaling up: %s", err)
Expand Down
17 changes: 17 additions & 0 deletions test/framework/testdata/autoscaler_load.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: autoscaler-load
spec:
selector:
matchLabels:
run: autoscaler-load
replicas: 111 # k8s node can have upto 110 pods so this ensures atleast 1 pod is unschedulable.
template:
metadata:
labels:
run: autoscaler-load
spec:
containers:
- name: nginx
image: public.ecr.aws/docker/library/nginx:stable
29 changes: 0 additions & 29 deletions test/framework/testdata/hpa_busybox.yaml

This file was deleted.

0 comments on commit a5118af

Please sign in to comment.