Skip to content

Commit 332413b

Browse files
committed
fix warcli down namespace
1 parent 87ea1ff commit 332413b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/warnet/control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def down():
123123
tanks = get_mission("tank")
124124
with console.status("[yellow]Uninstalling tanks...[/yellow]"):
125125
for tank in tanks:
126-
cmd = f"helm uninstall {tank.metadata.name}"
126+
cmd = f"helm uninstall {tank.metadata.name} --namespace {get_default_namespace()}"
127127
if stream_command(cmd):
128128
console.print(f"[green]Uninstalled tank: {tank.metadata.name}[/green]")
129129
else:

0 commit comments

Comments
 (0)