mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
35 lines
697 B
Go
35 lines
697 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/url"
|
|
|
|
"github.com/moby/moby/api/types/filters"
|
|
"github.com/moby/moby/api/types/swarm"
|
|
)
|
|
|
|
// NodeList returns the list of nodes.
|
|
func (cli *Client) NodeList(ctx context.Context, options swarm.NodeListOptions) ([]swarm.Node, error) {
|
|
query := url.Values{}
|
|
|
|
if options.Filters.Len() > 0 {
|
|
filterJSON, err := filters.ToJSON(options.Filters)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
query.Set("filters", filterJSON)
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/nodes", query, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var nodes []swarm.Node
|
|
err = json.NewDecoder(resp.Body).Decode(&nodes)
|
|
return nodes, err
|
|
}
|