mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-28 11:17:59 +00:00
[NO NEW TESTS NEEDED] Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
20 lines
571 B
Go
20 lines
571 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(ctx, "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
|
|
}
|