mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
19 lines
486 B
Go
19 lines
486 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
"strconv"
|
||
|
|
||
|
"github.com/docker/docker/api/types/swarm"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// ConfigUpdate attempts to updates a Config
|
||
|
func (cli *Client) ConfigUpdate(ctx context.Context, id string, version swarm.Version, config swarm.ConfigSpec) error {
|
||
|
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
|
||
|
}
|