2017-03-15 18:04:32 -04:00
|
|
|
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
|
2017-06-07 12:09:07 -04:00
|
|
|
if err := cli.NewVersionError("1.30", "config create"); err != nil {
|
|
|
|
return response, err
|
|
|
|
}
|
2017-03-15 18:04:32 -04:00
|
|
|
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
|
|
|
|
}
|