diff --git a/vertical-pod-autoscaler/hack/run-e2e-tests.sh b/vertical-pod-autoscaler/hack/run-e2e-tests.sh index cf717ac8799..986f02e5999 100755 --- a/vertical-pod-autoscaler/hack/run-e2e-tests.sh +++ b/vertical-pod-autoscaler/hack/run-e2e-tests.sh @@ -23,6 +23,7 @@ function print_help { echo "ERROR! Usage: run-e2e-tests.sh " echo " should be one of:" echo " - recommender" + echo " - updater" echo " - admission-controller" echo " - actuation" echo " - full-vpa" @@ -44,7 +45,7 @@ SUITE=$1 export GO111MODULE=on case ${SUITE} in - recommender|admission-controller|actuation|full-vpa) + recommender|updater|admission-controller|actuation|full-vpa) export KUBECONFIG=$HOME/.kube/config pushd ${SCRIPT_ROOT}/e2e go test -mod vendor ./v1beta2/*go -v --test.timeout=60m --args --ginkgo.v=true --ginkgo.focus="\[VPA\] \[${SUITE}\]" --report-dir=/workspace/_artifacts --disable-log-dump diff --git a/vertical-pod-autoscaler/hack/run-e2e.sh b/vertical-pod-autoscaler/hack/run-e2e.sh index 5f98904ac41..04f77864a4e 100755 --- a/vertical-pod-autoscaler/hack/run-e2e.sh +++ b/vertical-pod-autoscaler/hack/run-e2e.sh @@ -23,6 +23,7 @@ function print_help { echo "ERROR! Usage: run-e2e.sh " echo " should be one of:" echo " - recommender" + echo " - updater" echo " - admission-controller" echo " - actuation" echo " - full-vpa"