This vendor change was purely for the changes in docker to allow for setting the Masked and Read-only paths. See: moby/moby#36644 But because of the docker dep update it also needed cadvisor to be updated and winterm due to changes in pkg/tlsconfig in docker See: google/cadvisor#1967 Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
22 lines
554 B
Go
22 lines
554 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
)
|
|
|
|
// 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
|
|
}
|