mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d9524d92a9
makes the code a bit more DRY. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
566 B
Go
20 lines
566 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
)
|
|
|
|
// 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", version.String())
|
|
resp, err := cli.post(ctx, "/configs/"+id+"/update", query, config, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|