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
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
)
|
|
|
|
|
2021-02-16 15:07:44 +00:00
|
|
|
// ConfigUpdate attempts to update a config
|
2017-03-15 22:04:32 +00:00
|
|
|
func (cli *Client) ConfigUpdate(ctx context.Context, id string, version swarm.Version, config swarm.ConfigSpec) error {
|
2023-09-12 12:08:54 +00:00
|
|
|
if err := cli.NewVersionError(ctx, "1.30", "config update"); err != nil {
|
2017-06-07 16:09:07 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-03-15 22:04:32 +00:00
|
|
|
query := url.Values{}
|
2022-05-10 20:35:09 +00:00
|
|
|
query.Set("version", version.String())
|
2017-03-15 22:04:32 +00:00
|
|
|
resp, err := cli.post(ctx, "/configs/"+id+"/update", query, config, nil)
|
|
|
|
ensureReaderClosed(resp)
|
|
|
|
return err
|
|
|
|
}
|