2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2017-03-15 22:04:32 +00:00
|
|
|
|
|
|
|
import (
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2017-03-15 22:04:32 +00:00
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
)
|
|
|
|
|
2021-02-16 15:07:44 +00:00
|
|
|
// ConfigCreate creates a new config.
|
2017-03-15 22:04:32 +00:00
|
|
|
func (cli *Client) ConfigCreate(ctx context.Context, config swarm.ConfigSpec) (types.ConfigCreateResponse, error) {
|
|
|
|
var response types.ConfigCreateResponse
|
2023-09-12 12:08:54 +00:00
|
|
|
if err := cli.NewVersionError(ctx, "1.30", "config create"); err != nil {
|
2017-06-07 16:09:07 +00:00
|
|
|
return response, err
|
|
|
|
}
|
2017-03-15 22:04:32 +00:00
|
|
|
resp, err := cli.post(ctx, "/configs/create", nil, config, nil)
|
2019-02-11 12:26:12 +00:00
|
|
|
defer ensureReaderClosed(resp)
|
2017-03-15 22:04:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return response, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&response)
|
|
|
|
return response, err
|
|
|
|
}
|