2021-02-23 09:23:53 -05:00
|
|
|
package volume
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
|
|
|
"github.com/docker/cli/cli/command/completion"
|
|
|
|
"github.com/docker/docker/api/types/volume"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/pflag"
|
|
|
|
)
|
|
|
|
|
|
|
|
func newUpdateCommand(dockerCli command.Cli) *cobra.Command {
|
|
|
|
var availability string
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "update [OPTIONS] [VOLUME]",
|
|
|
|
Short: "Update a volume (cluster volumes only)",
|
2024-09-09 08:35:17 -04:00
|
|
|
Args: cli.ExactArgs(1),
|
2021-02-23 09:23:53 -05:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2023-09-09 18:27:44 -04:00
|
|
|
return runUpdate(cmd.Context(), dockerCli, args[0], availability, cmd.Flags())
|
2021-02-23 09:23:53 -05:00
|
|
|
},
|
2022-05-13 13:48:24 -04:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"version": "1.42",
|
|
|
|
"swarm": "manager",
|
|
|
|
},
|
2021-02-23 09:23:53 -05:00
|
|
|
ValidArgsFunction: completion.VolumeNames(dockerCli),
|
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
2023-01-03 05:12:24 -05:00
|
|
|
flags.StringVar(&availability, "availability", "active", `Cluster Volume availability ("active", "pause", "drain")`)
|
2022-05-13 13:48:24 -04:00
|
|
|
flags.SetAnnotation("availability", "version", []string{"1.42"})
|
|
|
|
flags.SetAnnotation("availability", "swarm", []string{"manager"})
|
2021-02-23 09:23:53 -05:00
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2023-09-09 18:27:44 -04:00
|
|
|
func runUpdate(ctx context.Context, dockerCli command.Cli, volumeID, availability string, flags *pflag.FlagSet) error {
|
2021-02-23 09:23:53 -05:00
|
|
|
// TODO(dperny): For this earliest version, the only thing that can be
|
|
|
|
// updated is Availability, which is necessary because to delete a cluster
|
|
|
|
// volume, the availability must first be set to "drain"
|
|
|
|
|
|
|
|
apiClient := dockerCli.Client()
|
|
|
|
|
|
|
|
vol, _, err := apiClient.VolumeInspectWithRaw(ctx, volumeID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if vol.ClusterVolume == nil {
|
|
|
|
return errors.New("Can only update cluster volumes")
|
|
|
|
}
|
|
|
|
|
|
|
|
if flags.Changed("availability") {
|
|
|
|
vol.ClusterVolume.Spec.Availability = volume.Availability(availability)
|
|
|
|
}
|
|
|
|
|
|
|
|
return apiClient.VolumeUpdate(
|
|
|
|
ctx, vol.ClusterVolume.ID, vol.ClusterVolume.Version,
|
|
|
|
volume.UpdateOptions{
|
|
|
|
Spec: &vol.ClusterVolume.Spec,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|