File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -euf
3+
4+ kubectl get ns -o name| grep pac-e2e| sed ' s/.*\///' | xargs -I" {}" -rP4 kubectl delete repo --all -n " {}"
5+ {
6+ kubectl get clustertasks| grep pac-| awk ' {print $1}' | xargs -rP4 kubectl delete clustertask
7+ kubectl get ns -o name| grep pac-e2e| sed ' s/.*\///' | xargs -rP4 kubectl delete ns
8+ } & !
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Usage: $0 [options] [testcase]
5353EOF
5454}
5555
56- while getopts " nE:fSldnk:ph :" o; do
56+ while getopts " nE:fSldnk:p:h :" o; do
5757 case " ${o} " in
5858 n)
5959 noclean=true
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ function install_pac() {
143143 oldPwd=${PWD}
144144 cd ${PAC_DIR}
145145 echo " Deploying PAC from ${PAC_DIR} "
146- env KO_DOCKER_REPO=localhost:5000 ko apply -f config -B > /dev/null
146+ env KO_DOCKER_REPO=localhost:5000 ko apply -f config --sbom=none - B > /dev/null
147147 cd ${oldPwd}
148148 fi
149149 configure_pac
You can’t perform that action at this time.
0 commit comments