refactor: use adapted upstream detach=false logic [ci skip]

See coop-cloud/organising#607.
This commit is contained in:
2024-07-02 12:54:48 +02:00
parent 2014cd6622
commit 9554ad40c8
10 changed files with 110 additions and 45 deletions

View File

@ -122,7 +122,10 @@ Passing "-p/--prune" does not remove those volumes.
logrus.Fatal(err)
}
rmOpts := stack.Remove{Namespaces: []string{app.StackName()}}
rmOpts := stack.Remove{
Namespaces: []string{app.StackName()},
Detach: false,
}
if err := stack.RunRemove(context.Background(), cl, rmOpts); err != nil {
logrus.Fatal(err)
}