VPA e2e test infra debug cont.

This commit is contained in:
Slawomir Chylek 2018-02-20 13:03:13 +01:00
parent 2722fa6297
commit ed1ff648b8
1 changed files with 5 additions and 3 deletions

View File

@ -47,9 +47,11 @@ case ${SUITE} in
${SCRIPT_ROOT}/hack/deploy-for-e2e.sh ${SUITE} ${SCRIPT_ROOT}/hack/deploy-for-e2e.sh ${SUITE}
# VPA creation and listing for debugging test-infra. DELETE AFTER DEBUG # VPA creation and listing for debugging test-infra. DELETE AFTER DEBUG
kubectl create -f ${SCRIPT_ROOT}/examples/hamster.yaml kubectl describe customresourcedefinition
kubectl describe vpa kubectl create namespace default || true
kubectl delete -f ${SCRIPT_ROOT}/examples/hamster.yaml kubectl --namespace default create -f ${SCRIPT_ROOT}/examples/hamster.yaml
kubectl describe --all-namespaces vpa
kubectl --namespace default delete -f ${SCRIPT_ROOT}/examples/hamster.yaml
go test ${SCRIPT_ROOT}/e2e/*go -v --args --ginkgo.v=true --ginkgo.focus="\[VPA\] \[${SUITE}\]" go test ${SCRIPT_ROOT}/e2e/*go -v --args --ginkgo.v=true --ginkgo.focus="\[VPA\] \[${SUITE}\]"
;; ;;