2016-10-27 21:50:49 -04:00
|
|
|
package swarm
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2016-10-27 21:50:49 -04:00
|
|
|
"fmt"
|
2017-06-09 17:16:56 -04:00
|
|
|
"io"
|
2016-10-27 21:50:49 -04:00
|
|
|
|
2017-04-17 18:07:56 -04:00
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
2022-03-30 09:27:25 -04:00
|
|
|
"github.com/docker/cli/cli/command/completion"
|
2016-10-28 19:35:49 -04:00
|
|
|
"github.com/docker/docker/api/types/swarm"
|
2016-10-27 21:50:49 -04:00
|
|
|
"github.com/pkg/errors"
|
2016-12-25 16:23:35 -05:00
|
|
|
"github.com/spf13/cobra"
|
2016-10-27 21:50:49 -04:00
|
|
|
)
|
|
|
|
|
2016-11-21 05:22:22 -05:00
|
|
|
type unlockKeyOptions struct {
|
|
|
|
rotate bool
|
|
|
|
quiet bool
|
|
|
|
}
|
|
|
|
|
2016-12-25 16:23:35 -05:00
|
|
|
func newUnlockKeyCommand(dockerCli command.Cli) *cobra.Command {
|
2016-11-21 05:22:22 -05:00
|
|
|
opts := unlockKeyOptions{}
|
2016-10-27 21:50:49 -04:00
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "unlock-key [OPTIONS]",
|
|
|
|
Short: "Manage the unlock key",
|
|
|
|
Args: cli.NoArgs,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2023-09-09 18:27:44 -04:00
|
|
|
return runUnlockKey(cmd.Context(), dockerCli, opts)
|
2016-10-27 21:50:49 -04:00
|
|
|
},
|
2022-03-29 05:04:50 -04:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"version": "1.24",
|
|
|
|
"swarm": "manager",
|
|
|
|
},
|
2022-03-30 09:27:25 -04:00
|
|
|
ValidArgsFunction: completion.NoComplete,
|
2016-10-27 21:50:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
2016-11-21 05:22:22 -05:00
|
|
|
flags.BoolVar(&opts.rotate, flagRotate, false, "Rotate unlock key")
|
|
|
|
flags.BoolVarP(&opts.quiet, flagQuiet, "q", false, "Only display token")
|
2016-10-27 21:50:49 -04:00
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2023-09-09 18:27:44 -04:00
|
|
|
func runUnlockKey(ctx context.Context, dockerCli command.Cli, opts unlockKeyOptions) error {
|
2016-11-21 05:22:22 -05:00
|
|
|
client := dockerCli.Client()
|
|
|
|
|
|
|
|
if opts.rotate {
|
|
|
|
flags := swarm.UpdateFlags{RotateManagerUnlockKey: true}
|
|
|
|
|
|
|
|
sw, err := client.SwarmInspect(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !sw.Spec.EncryptionConfig.AutoLockManagers {
|
|
|
|
return errors.New("cannot rotate because autolock is not turned on")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := client.SwarmUpdate(ctx, sw.Version, sw.Spec, flags); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !opts.quiet {
|
|
|
|
fmt.Fprintf(dockerCli.Out(), "Successfully rotated manager unlock key.\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unlockKeyResp, err := client.SwarmGetUnlockKey(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "could not fetch unlock key")
|
|
|
|
}
|
|
|
|
|
|
|
|
if unlockKeyResp.UnlockKey == "" {
|
|
|
|
return errors.New("no unlock key is set")
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.quiet {
|
|
|
|
fmt.Fprintln(dockerCli.Out(), unlockKeyResp.UnlockKey)
|
|
|
|
return nil
|
2016-10-27 21:50:49 -04:00
|
|
|
}
|
|
|
|
|
2017-06-09 17:16:56 -04:00
|
|
|
printUnlockCommand(dockerCli.Out(), unlockKeyResp.UnlockKey)
|
2016-11-21 05:22:22 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-09 17:16:56 -04:00
|
|
|
func printUnlockCommand(out io.Writer, unlockKey string) {
|
2016-11-21 05:22:22 -05:00
|
|
|
if len(unlockKey) > 0 {
|
2017-06-09 17:16:56 -04:00
|
|
|
fmt.Fprintf(out, "To unlock a swarm manager after it restarts, "+
|
2017-05-03 18:14:30 -04:00
|
|
|
"run the `docker swarm unlock`\ncommand and provide the following key:\n\n %s\n\n"+
|
2024-04-26 14:16:51 -04:00
|
|
|
"Remember to store this key in a password manager, since without it you\n"+
|
2017-05-03 18:14:30 -04:00
|
|
|
"will not be able to restart the manager.\n", unlockKey)
|
2016-11-21 05:22:22 -05:00
|
|
|
}
|
2016-10-27 21:50:49 -04:00
|
|
|
}
|