mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d9524d92a9
makes the code a bit more DRY. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
17 lines
464 B
Go
17 lines
464 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
)
|
|
|
|
// NodeUpdate updates a Node.
|
|
func (cli *Client) NodeUpdate(ctx context.Context, nodeID string, version swarm.Version, node swarm.NodeSpec) error {
|
|
query := url.Values{}
|
|
query.Set("version", version.String())
|
|
resp, err := cli.post(ctx, "/nodes/"+nodeID+"/update", query, node, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|