mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
113cae5ba2
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
18 lines
336 B
Go
18 lines
336 B
Go
package client
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// SwarmLeave leaves the swarm.
|
|
func (cli *Client) SwarmLeave(ctx context.Context, force bool) error {
|
|
query := url.Values{}
|
|
if force {
|
|
query.Set("force", "1")
|
|
}
|
|
resp, err := cli.post(ctx, "/swarm/leave", query, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|