Merge pull request #9770 from GabyCT/topic/fixvad

tests: Use variable definition for better uniformity
This commit is contained in:
GabyCT 2024-06-04 15:23:34 -06:00 committed by GitHub
commit ba30f0804a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -179,8 +179,8 @@ kbs_uninstall_cli() {
function kbs_k8s_delete() {
pushd "$COCO_KBS_DIR"
kubectl delete -k config/kubernetes/overlays
# Verify that coco-tenant resources were properly deleted
cmd="kubectl get all -n coco-tenant 2>&1 | grep 'No resources found'"
# Verify that KBS namespace resources were properly deleted
cmd="kubectl get all -n $KBS_NS 2>&1 | grep 'No resources found'"
waitForProcess "120" "30" "$cmd"
popd
}