Skip to content

Commit

Permalink
Merge pull request #7576 from adrianmoisey/local-e2e-tests-actuation
Browse files Browse the repository at this point in the history
Configure e2e local scripts for the actuation suite
  • Loading branch information
k8s-ci-robot authored Dec 9, 2024
2 parents dda0dc8 + f0af7c1 commit 6fd8188
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions vertical-pod-autoscaler/hack/deploy-for-e2e-locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ function print_help {
echo " - recommender-externalmetrics"
echo " - updater"
echo " - admission-controller"
echo " - actuation"
echo " - full-vpa"
}

Expand All @@ -53,6 +54,9 @@ case ${SUITE} in
full-vpa)
COMPONENTS="recommender updater admission-controller"
;;
actuation)
COMPONENTS="updater admission-controller"
;;
*)
print_help
exit 1
Expand Down
4 changes: 2 additions & 2 deletions vertical-pod-autoscaler/hack/run-e2e-locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ function print_help {
echo " - recommender-externalmetrics"
echo " - updater"
echo " - admission-controller"
echo " - actuation"
echo " - full-vpa"

}

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


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

0 comments on commit 6fd8188

Please sign in to comment.