Skip to content

Commit 6fd8188

Browse files
authored
Merge pull request #7576 from adrianmoisey/local-e2e-tests-actuation
Configure e2e local scripts for the actuation suite
2 parents dda0dc8 + f0af7c1 commit 6fd8188

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

vertical-pod-autoscaler/hack/deploy-for-e2e-locally.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function print_help {
3131
echo " - recommender-externalmetrics"
3232
echo " - updater"
3333
echo " - admission-controller"
34+
echo " - actuation"
3435
echo " - full-vpa"
3536
}
3637

@@ -53,6 +54,9 @@ case ${SUITE} in
5354
full-vpa)
5455
COMPONENTS="recommender updater admission-controller"
5556
;;
57+
actuation)
58+
COMPONENTS="updater admission-controller"
59+
;;
5660
*)
5761
print_help
5862
exit 1

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ function print_help {
2727
echo " - recommender-externalmetrics"
2828
echo " - updater"
2929
echo " - admission-controller"
30+
echo " - actuation"
3031
echo " - full-vpa"
31-
3232
}
3333

3434
if [ $# -eq 0 ]; then
@@ -84,7 +84,7 @@ kind load docker-image localhost:5001/write-metrics:dev
8484

8585

8686
case ${SUITE} in
87-
recommender|recommender-externalmetrics|updater|admission-controller|full-vpa)
87+
recommender|recommender-externalmetrics|updater|admission-controller|actuation|full-vpa)
8888
${SCRIPT_ROOT}/hack/vpa-down.sh
8989
echo " ** Deploying for suite ${SUITE}"
9090
${SCRIPT_ROOT}/hack/deploy-for-e2e-locally.sh ${SUITE}

0 commit comments

Comments
 (0)