Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix targeted scale-in logic #215

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions cluster-autoscaler/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,10 @@ start:
@GO111MODULE=on go run main.go \
--kubeconfig=$(TARGET_KUBECONFIG) \
--cloud-provider=mcm \
--nodes=1:2:$(MACHINE_DEPLOYMENT_ZONE_1) \
--nodes=0:1:$(MACHINE_DEPLOYMENT_ZONE_2) \
--nodes=0:1:$(MACHINE_DEPLOYMENT_ZONE_3) \
--nodes=0:2:$(MACHINE_DEPLOYMENT_1_ZONE_1) \
--nodes=1:2:$(MACHINE_DEPLOYMENT_2_ZONE_1) \
--nodes=0:1:$(MACHINE_DEPLOYMENT_2_ZONE_2) \
--nodes=0:1:$(MACHINE_DEPLOYMENT_2_ZONE_3) \
--skip-nodes-with-system-pods=false \
--skip-nodes-with-local-storage=false \
--scale-down-delay-after-add=10s \
Expand Down Expand Up @@ -147,7 +148,7 @@ download-kubeconfigs:
read SHOOT; \
echo "enter cluster provider(gcp|aws|azure|vsphere|openstack|alicloud|metal|equinix-metal)"; \
read PROVIDER; \
echo "enter zone with zero nodes where the PV needs to be created to perform test"; \
echo "enter zone with zero nodes in worker pool \"three-zones\" where the PV needs to be created to perform test"; \
read ZONE; \
. ./hack/local_setup.sh --SEED $$SEED --SHOOT $$SHOOT --PROJECT $$PROJECT; \
echo "###############################################" ; \
Expand Down
Loading