2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2018-05-19 07:38:54 -04:00
|
|
|
"net/url"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
2018-04-19 18:30:59 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// NodeRemove removes a Node.
|
|
|
|
func (cli *Client) NodeRemove(ctx context.Context, nodeID string, options types.NodeRemoveOptions) error {
|
|
|
|
query := url.Values{}
|
|
|
|
if options.Force {
|
|
|
|
query.Set("force", "1")
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := cli.delete(ctx, "/nodes/"+nodeID, query, nil)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(resp)
|
2017-09-08 12:04:34 -04:00
|
|
|
return wrapResponseError(err, resp, "node", nodeID)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|