Merge pull request #7576 from adrianmoisey/local-e2e-tests-actuation
Configure e2e local scripts for the actuation suite
This commit is contained in:
commit
6fd8188a11
|
|
@ -31,6 +31,7 @@ function print_help {
|
|||
echo " - recommender-externalmetrics"
|
||||
echo " - updater"
|
||||
echo " - admission-controller"
|
||||
echo " - actuation"
|
||||
echo " - full-vpa"
|
||||
}
|
||||
|
||||
|
|
@ -53,6 +54,9 @@ case ${SUITE} in
|
|||
full-vpa)
|
||||
COMPONENTS="recommender updater admission-controller"
|
||||
;;
|
||||
actuation)
|
||||
COMPONENTS="updater admission-controller"
|
||||
;;
|
||||
*)
|
||||
print_help
|
||||
exit 1
|
||||
|
|
|
|||
|
|
@ -27,8 +27,8 @@ function print_help {
|
|||
echo " - recommender-externalmetrics"
|
||||
echo " - updater"
|
||||
echo " - admission-controller"
|
||||
echo " - actuation"
|
||||
echo " - full-vpa"
|
||||
|
||||
}
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue