mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-25 01:40:30 +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"
|
|
)
|
|
|
|
// SecretUpdate attempts to update a Secret
|
|
func (cli *Client) SecretUpdate(ctx context.Context, id string, version swarm.Version, secret swarm.SecretSpec) error {
|
|
if err := cli.NewVersionError("1.25", "secret update"); err != nil {
|
|
return err
|
|
}
|
|
query := url.Values{}
|
|
query.Set("version", strconv.FormatUint(version.Index, 10))
|
|
resp, err := cli.post(ctx, "/secrets/"+id+"/update", query, secret, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|