(*args: str, cluster: str, **subprocess_args)
| 468 | |
| 469 | |
| 470 | def kubectl(*args: str, cluster: str, **subprocess_args): |
| 471 | return subprocess.check_output( |
| 472 | ["kubectl", "--context", f"kind-{cluster}", *args], |
| 473 | **subprocess_args, |
| 474 | ) |
| 475 | |
| 476 | |
| 477 | T = TypeVar("T") |
no outgoing calls
no test coverage detected