2019-04-12 08:24:24 +08:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2019-04-13 07:39:06 +08:00
|
|
|
"context"
|
2022-02-03 20:39:44 +08:00
|
|
|
"time"
|
2019-04-13 07:39:06 +08:00
|
|
|
|
2019-04-25 10:29:56 +08:00
|
|
|
"github.com/docker/buildx/store"
|
2021-11-04 12:17:27 +08:00
|
|
|
"github.com/docker/buildx/store/storeutil"
|
2019-04-13 07:39:06 +08:00
|
|
|
"github.com/docker/cli/cli"
|
2019-04-12 08:24:24 +08:00
|
|
|
"github.com/docker/cli/cli/command"
|
2019-04-13 07:39:06 +08:00
|
|
|
"github.com/moby/buildkit/util/appcontext"
|
2022-02-03 20:39:44 +08:00
|
|
|
"github.com/pkg/errors"
|
2019-04-12 08:24:24 +08:00
|
|
|
"github.com/spf13/cobra"
|
2022-02-03 20:39:44 +08:00
|
|
|
"golang.org/x/sync/errgroup"
|
2019-04-12 08:24:24 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type rmOptions struct {
|
2022-02-03 20:39:44 +08:00
|
|
|
builder string
|
|
|
|
keepState bool
|
|
|
|
keepDaemon bool
|
|
|
|
allInactive bool
|
|
|
|
force bool
|
2019-04-12 08:24:24 +08:00
|
|
|
}
|
|
|
|
|
2022-02-03 20:39:44 +08:00
|
|
|
const (
|
|
|
|
rmInactiveWarning = `WARNING! This will remove all builders that are not in running state. Are you sure you want to continue?`
|
|
|
|
)
|
|
|
|
|
2020-04-28 05:37:17 +08:00
|
|
|
func runRm(dockerCli command.Cli, in rmOptions) error {
|
2019-04-13 07:39:06 +08:00
|
|
|
ctx := appcontext.Context()
|
|
|
|
|
2022-02-03 20:39:44 +08:00
|
|
|
if in.allInactive && !in.force && !command.PromptForConfirmation(dockerCli.In(), dockerCli.Out(), rmInactiveWarning) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-04 12:17:27 +08:00
|
|
|
txn, release, err := storeutil.GetStore(dockerCli)
|
2019-04-13 07:39:06 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer release()
|
|
|
|
|
2022-02-03 20:39:44 +08:00
|
|
|
if in.allInactive {
|
|
|
|
return rmAllInactive(ctx, txn, dockerCli, in)
|
|
|
|
}
|
|
|
|
|
2022-05-20 16:59:25 +08:00
|
|
|
var ng *store.NodeGroup
|
2020-04-28 05:37:17 +08:00
|
|
|
if in.builder != "" {
|
2022-05-20 16:59:25 +08:00
|
|
|
ng, err = storeutil.GetNodeGroup(txn, dockerCli, in.builder)
|
2019-04-13 07:39:06 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-05-20 16:59:25 +08:00
|
|
|
} else {
|
|
|
|
ng, err = storeutil.GetCurrentInstance(txn, dockerCli)
|
|
|
|
if err != nil {
|
2019-04-13 07:39:06 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-05-20 16:59:25 +08:00
|
|
|
}
|
|
|
|
if ng == nil {
|
|
|
|
return nil
|
2019-04-13 07:39:06 +08:00
|
|
|
}
|
|
|
|
|
2022-05-20 16:59:25 +08:00
|
|
|
ctxbuilders, err := dockerCli.ContextStore().List()
|
2019-04-13 07:39:06 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-05-20 16:59:25 +08:00
|
|
|
for _, cb := range ctxbuilders {
|
|
|
|
if ng.Driver == "docker" && len(ng.Nodes) == 1 && ng.Nodes[0].Endpoint == cb.Name {
|
|
|
|
return errors.Errorf("context builder cannot be removed, run `docker context rm %s` to remove this context", cb.Name)
|
2019-04-13 07:39:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-20 16:59:25 +08:00
|
|
|
err1 := rm(ctx, dockerCli, in, ng)
|
|
|
|
if err := txn.Remove(ng.Name); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return err1
|
2019-04-12 08:24:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-28 05:37:17 +08:00
|
|
|
func rmCmd(dockerCli command.Cli, rootOpts *rootOptions) *cobra.Command {
|
2019-04-12 08:24:24 +08:00
|
|
|
var options rmOptions
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "rm [NAME]",
|
|
|
|
Short: "Remove a builder instance",
|
2019-04-13 07:39:06 +08:00
|
|
|
Args: cli.RequiresMaxArgs(1),
|
2019-04-12 08:24:24 +08:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2020-04-28 05:37:17 +08:00
|
|
|
options.builder = rootOpts.builder
|
|
|
|
if len(args) > 0 {
|
2022-02-03 20:39:44 +08:00
|
|
|
if options.allInactive {
|
|
|
|
return errors.New("cannot specify builder name when --all-inactive is set")
|
|
|
|
}
|
2020-04-28 05:37:17 +08:00
|
|
|
options.builder = args[0]
|
|
|
|
}
|
|
|
|
return runRm(dockerCli, options)
|
2019-04-12 08:24:24 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-07-14 00:09:30 +08:00
|
|
|
flags := cmd.Flags()
|
|
|
|
flags.BoolVar(&options.keepState, "keep-state", false, "Keep BuildKit state")
|
2021-11-17 20:56:42 +08:00
|
|
|
flags.BoolVar(&options.keepDaemon, "keep-daemon", false, "Keep the buildkitd daemon running")
|
2022-02-03 20:39:44 +08:00
|
|
|
flags.BoolVar(&options.allInactive, "all-inactive", false, "Remove all inactive builders")
|
|
|
|
flags.BoolVarP(&options.force, "force", "f", false, "Do not prompt for confirmation")
|
2021-07-14 00:09:30 +08:00
|
|
|
|
2019-04-13 07:39:06 +08:00
|
|
|
return cmd
|
|
|
|
}
|
2019-04-12 08:24:24 +08:00
|
|
|
|
2022-02-03 20:39:44 +08:00
|
|
|
func rm(ctx context.Context, dockerCli command.Cli, in rmOptions, ng *store.NodeGroup) error {
|
2019-10-21 14:02:37 +08:00
|
|
|
dis, err := driversForNodeGroup(ctx, dockerCli, ng, "")
|
2019-04-13 07:39:06 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, di := range dis {
|
2021-11-17 20:56:42 +08:00
|
|
|
if di.Driver == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Do not stop the buildkitd daemon when --keep-daemon is provided
|
2022-02-03 20:39:44 +08:00
|
|
|
if !in.keepDaemon {
|
2019-04-13 07:39:06 +08:00
|
|
|
if err := di.Driver.Stop(ctx, true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-17 20:56:42 +08:00
|
|
|
}
|
2022-02-03 20:39:44 +08:00
|
|
|
if err := di.Driver.Rm(ctx, true, !in.keepState, !in.keepDaemon); err != nil {
|
2021-11-17 20:56:42 +08:00
|
|
|
return err
|
2019-04-13 07:39:06 +08:00
|
|
|
}
|
|
|
|
if di.Err != nil {
|
|
|
|
err = di.Err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
2019-04-12 08:24:24 +08:00
|
|
|
}
|
2022-02-03 20:39:44 +08:00
|
|
|
|
|
|
|
func rmAllInactive(ctx context.Context, txn *store.Txn, dockerCli command.Cli, in rmOptions) error {
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, 20*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
ll, err := txn.List()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
builders := make([]*nginfo, len(ll))
|
|
|
|
for i, ng := range ll {
|
|
|
|
builders[i] = &nginfo{ng: ng}
|
|
|
|
}
|
|
|
|
|
|
|
|
eg, _ := errgroup.WithContext(ctx)
|
|
|
|
for _, b := range builders {
|
|
|
|
func(b *nginfo) {
|
|
|
|
eg.Go(func() error {
|
|
|
|
if err := loadNodeGroupData(ctx, dockerCli, b); err != nil {
|
|
|
|
return errors.Wrapf(err, "cannot load %s", b.ng.Name)
|
|
|
|
}
|
|
|
|
if b.ng.Dynamic {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if b.inactive() {
|
|
|
|
rmerr := rm(ctx, dockerCli, in, b.ng)
|
|
|
|
if err := txn.Remove(b.ng.Name); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return rmerr
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
return eg.Wait()
|
|
|
|
}
|