mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b2e4c7f3b5
- use Filters instead of Filter for secret list - UID, GID -> string - getSecrets -> getSecretsByName - updated test case for secrets with better source - use golang.org/x/context instead of context - for grpc conversion allocate with make - check for nil with task.Spec.GetContainer() Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
35 lines
775 B
Go
35 lines
775 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// SecretList returns the list of secrets.
|
|
func (cli *Client) SecretList(ctx context.Context, options types.SecretListOptions) ([]swarm.Secret, error) {
|
|
query := url.Values{}
|
|
|
|
if options.Filters.Len() > 0 {
|
|
filterJSON, err := filters.ToParam(options.Filters)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
query.Set("filters", filterJSON)
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/secrets", query, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var secrets []swarm.Secret
|
|
err = json.NewDecoder(resp.body).Decode(&secrets)
|
|
ensureReaderClosed(resp)
|
|
return secrets, err
|
|
}
|