mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
102738101a
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
22 lines
562 B
Go
22 lines
562 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ConfigCreate creates a new Config.
|
|
func (cli *Client) ConfigCreate(ctx context.Context, config swarm.ConfigSpec) (types.ConfigCreateResponse, error) {
|
|
var response types.ConfigCreateResponse
|
|
resp, err := cli.post(ctx, "/configs/create", nil, config, nil)
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&response)
|
|
ensureReaderClosed(resp)
|
|
return response, err
|
|
}
|