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"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
)
|
|
|
|
|
2016-12-20 06:14:41 -05:00
|
|
|
// SwarmInspect inspects the swarm.
|
2016-09-06 14:46:37 -04:00
|
|
|
func (cli *Client) SwarmInspect(ctx context.Context) (swarm.Swarm, error) {
|
|
|
|
serverResp, err := cli.get(ctx, "/swarm", nil, nil)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(serverResp)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return swarm.Swarm{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var response swarm.Swarm
|
|
|
|
err = json.NewDecoder(serverResp.body).Decode(&response)
|
|
|
|
return response, err
|
|
|
|
}
|