14 """Clean up GKE namespaces leaked by the tests."""
18 from bin.cleanup
import cleanup
19 from framework
import xds_flags
20 from framework
import xds_k8s_flags
25 raise app.UsageError(
'Too many command-line arguments.')
28 project: str = xds_flags.PROJECT.value
29 network: str = xds_flags.NETWORK.value
30 gcp_service_account: str = xds_k8s_flags.GCP_SERVICE_ACCOUNT.value
31 dry_run: bool = cleanup.DRY_RUN.value
37 if __name__ ==
'__main__':