mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 20:31:10 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
21 lines
598 B
Go
21 lines
598 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
import (
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"docker.io/go-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
|
|
}
|