mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
21 lines
615 B
Go
21 lines
615 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ConfigUpdate attempts to update a Config
|
|
func (cli *Client) ConfigUpdate(ctx context.Context, id string, version swarm.Version, config swarm.ConfigSpec) error {
|
|
if err := cli.NewVersionError("1.30", "config update"); err != nil {
|
|
return err
|
|
}
|
|
query := url.Values{}
|
|
query.Set("version", strconv.FormatUint(version.Index, 10))
|
|
resp, err := cli.post(ctx, "/configs/"+id+"/update", query, config, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|