|
@@ -2,7 +2,6 @@ package client // import "github.com/docker/docker/client"
|
|
|
|
|
|
import (
|
|
import (
|
|
"context"
|
|
"context"
|
|
- "fmt"
|
|
|
|
"net/url"
|
|
"net/url"
|
|
"strconv"
|
|
"strconv"
|
|
|
|
|
|
@@ -12,10 +11,10 @@ import (
|
|
// SwarmUpdate updates the swarm.
|
|
// SwarmUpdate updates the swarm.
|
|
func (cli *Client) SwarmUpdate(ctx context.Context, version swarm.Version, swarm swarm.Spec, flags swarm.UpdateFlags) error {
|
|
func (cli *Client) SwarmUpdate(ctx context.Context, version swarm.Version, swarm swarm.Spec, flags swarm.UpdateFlags) error {
|
|
query := url.Values{}
|
|
query := url.Values{}
|
|
- query.Set("version", strconv.FormatUint(version.Index, 10))
|
|
|
|
- query.Set("rotateWorkerToken", fmt.Sprintf("%v", flags.RotateWorkerToken))
|
|
|
|
- query.Set("rotateManagerToken", fmt.Sprintf("%v", flags.RotateManagerToken))
|
|
|
|
- query.Set("rotateManagerUnlockKey", fmt.Sprintf("%v", flags.RotateManagerUnlockKey))
|
|
|
|
|
|
+ query.Set("version", version.String())
|
|
|
|
+ query.Set("rotateWorkerToken", strconv.FormatBool(flags.RotateWorkerToken))
|
|
|
|
+ query.Set("rotateManagerToken", strconv.FormatBool(flags.RotateManagerToken))
|
|
|
|
+ query.Set("rotateManagerUnlockKey", strconv.FormatBool(flags.RotateManagerUnlockKey))
|
|
resp, err := cli.post(ctx, "/swarm/update", query, swarm, nil)
|
|
resp, err := cli.post(ctx, "/swarm/update", query, swarm, nil)
|
|
ensureReaderClosed(resp)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
return err
|