From 5a048f7ae821edbc8005a54b342e1006cdd1e073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sun, 31 Oct 2021 17:11:51 +0100 Subject: [PATCH] Cosmetics --- src/runboat/k8s.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/runboat/k8s.py b/src/runboat/k8s.py index 3b4135e..24f4e77 100644 --- a/src/runboat/k8s.py +++ b/src/runboat/k8s.py @@ -161,7 +161,14 @@ async def deploy(deployment_vars: DeploymentVars) -> None: str(tmp_path), ] ) - await _kubectl(["apply", "-k", str(tmp_path), "--wait=false"]) + await _kubectl( + [ + "apply", + "-k", + str(tmp_path), + "--wait=false", + ] + ) async def delete_resources(build_name: str) -> None: