fix: drop swarmkit/etcd dep
All checks were successful
continuous-integration/drone/push Build is passing

Part of coop-cloud/go-abra#57.
This commit is contained in:
2021-09-04 21:08:14 +02:00
parent f65090bd2f
commit da049ad69a
9 changed files with 27 additions and 25 deletions

View File

@ -8,7 +8,6 @@ import (
"coopcloud.tech/abra/client"
stack "coopcloud.tech/abra/client/stack"
"coopcloud.tech/abra/config"
"github.com/docker/cli/cli/command/stack/options"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
@ -39,7 +38,7 @@ var appUndeployCommand = &cli.Command{
logrus.Fatal(err)
}
rmOpts := options.Remove{Namespaces: []string{appEnv.StackName()}}
rmOpts := stack.Remove{Namespaces: []string{appEnv.StackName()}}
if err := stack.RunRemove(ctx, cl, rmOpts); err != nil {
logrus.Fatal(err)
}