Cosmetics

This commit is contained in:
Stéphane Bidoul 2021-10-31 17:11:51 +01:00
parent 5a4f2ad83a
commit 5a048f7ae8
No known key found for this signature in database
GPG key ID: BCAB2555446B5B92

View file

@ -161,7 +161,14 @@ async def deploy(deployment_vars: DeploymentVars) -> None:
str(tmp_path), 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: async def delete_resources(build_name: str) -> None: