Skip to content

Commit 7e0a312

Browse files
committed
VPA: Enable InPlacePodVerticalScaling feature flag on e2e
Signed-off-by: Max Cao <[email protected]>
1 parent e58ce3e commit 7e0a312

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
kind: Cluster
2+
apiVersion: kind.x-k8s.io/v1alpha4
3+
featureGates:
4+
InPlacePodVerticalScaling: true

vertical-pod-autoscaler/hack/run-e2e-locally.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ kind delete cluster -n kind -q
7575

7676
echo "Creating KIND cluster 'kind'"
7777
KIND_VERSION="kindest/node:v1.32.0"
78-
if ! kind create cluster --image=${KIND_VERSION}; then
78+
if ! kind create cluster --image=${KIND_VERSION} --config ${SCRIPT_ROOT}/hack/kind-config.yaml; then
7979
echo "Failed to create KIND cluster. Exiting. Make sure kind version is updated."
8080
echo "Available versions: https://github.com/kubernetes-sigs/kind/releases"
8181
exit 1

0 commit comments

Comments
 (0)