mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-25 09:50:31 +00:00
22 lines
598 B
Go
22 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
|
||
|
}
|