test-211-stretch-cleanup.sh 303 B

123456789
  1. #!/usr/bin/env bash
  2. set -xeuo pipefail
  3. NAMESPACE="stretch-overlap"
  4. ./rook --log-level DEBUG multus validation cleanup --namespace "$NAMESPACE"
  5. # should be no non-terminating resources in namespace
  6. [[ -z "$(kubectl --namespace "$NAMESPACE" get pods --no-headers 2>/dev/null | grep -v Terminating)" ]]