2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2016-11-15 02:08:24 +00:00
|
|
|
"encoding/json"
|
2016-09-06 18:46:37 +00:00
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
2021-08-26 19:08:38 +00:00
|
|
|
"github.com/docker/docker/api/types/registry"
|
2016-09-06 18:46:37 +00:00
|
|
|
"github.com/docker/docker/api/types/swarm"
|
2023-07-10 14:33:20 +00:00
|
|
|
"github.com/docker/docker/api/types/versions"
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
2018-10-23 02:11:21 +00:00
|
|
|
// ServiceUpdate updates a Service. The version number is required to avoid conflicting writes.
|
|
|
|
// It should be the value as set *before* the update. You can find this value in the Meta field
|
|
|
|
// of swarm.Service, which can be found using ServiceInspectWithRaw.
|
2016-11-15 02:08:24 +00:00
|
|
|
func (cli *Client) ServiceUpdate(ctx context.Context, serviceID string, version swarm.Version, service swarm.ServiceSpec, options types.ServiceUpdateOptions) (types.ServiceUpdateResponse, error) {
|
2016-09-06 18:46:37 +00:00
|
|
|
var (
|
2020-04-16 11:03:39 +00:00
|
|
|
query = url.Values{}
|
|
|
|
response = types.ServiceUpdateResponse{}
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
2016-09-07 23:32:44 +00:00
|
|
|
if options.RegistryAuthFrom != "" {
|
|
|
|
query.Set("registryAuthFrom", options.RegistryAuthFrom)
|
|
|
|
}
|
|
|
|
|
2017-02-16 17:27:01 +00:00
|
|
|
if options.Rollback != "" {
|
|
|
|
query.Set("rollback", options.Rollback)
|
|
|
|
}
|
|
|
|
|
2022-05-10 20:35:09 +00:00
|
|
|
query.Set("version", version.String())
|
2016-09-06 18:46:37 +00:00
|
|
|
|
2017-06-07 17:07:01 +00:00
|
|
|
if err := validateServiceSpec(service); err != nil {
|
2020-04-16 11:03:39 +00:00
|
|
|
return response, err
|
2017-05-18 22:00:25 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 17:07:01 +00:00
|
|
|
// ensure that the image is tagged
|
2020-04-16 11:03:39 +00:00
|
|
|
var resolveWarning string
|
|
|
|
switch {
|
|
|
|
case service.TaskTemplate.ContainerSpec != nil:
|
2017-06-07 17:07:01 +00:00
|
|
|
if taggedImg := imageWithTagString(service.TaskTemplate.ContainerSpec.Image); taggedImg != "" {
|
|
|
|
service.TaskTemplate.ContainerSpec.Image = taggedImg
|
|
|
|
}
|
|
|
|
if options.QueryRegistry {
|
2020-04-16 11:42:47 +00:00
|
|
|
resolveWarning = resolveContainerSpecImage(ctx, cli, &service.TaskTemplate, options.EncodedRegistryAuth)
|
2017-04-05 22:43:17 +00:00
|
|
|
}
|
2020-04-16 11:03:39 +00:00
|
|
|
case service.TaskTemplate.PluginSpec != nil:
|
2017-06-07 17:07:01 +00:00
|
|
|
if taggedImg := imageWithTagString(service.TaskTemplate.PluginSpec.Remote); taggedImg != "" {
|
|
|
|
service.TaskTemplate.PluginSpec.Remote = taggedImg
|
|
|
|
}
|
|
|
|
if options.QueryRegistry {
|
2020-04-16 11:42:47 +00:00
|
|
|
resolveWarning = resolvePluginSpecRemote(ctx, cli, &service.TaskTemplate, options.EncodedRegistryAuth)
|
2017-06-07 17:07:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-10 14:33:20 +00:00
|
|
|
headers := map[string][]string{}
|
|
|
|
if versions.LessThan(cli.version, "1.30") {
|
|
|
|
// the custom "version" header was used by engine API before 20.10
|
|
|
|
// (API 1.30) to switch between client- and server-side lookup of
|
|
|
|
// image digests.
|
|
|
|
headers["version"] = []string{cli.version}
|
|
|
|
}
|
|
|
|
if options.EncodedRegistryAuth != "" {
|
|
|
|
headers[registry.AuthHeader] = []string{options.EncodedRegistryAuth}
|
|
|
|
}
|
2016-09-06 18:46:37 +00:00
|
|
|
resp, err := cli.post(ctx, "/services/"+serviceID+"/update", query, service, headers)
|
2019-02-11 12:26:12 +00:00
|
|
|
defer ensureReaderClosed(resp)
|
2016-11-15 02:08:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return response, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&response)
|
2020-04-16 11:03:39 +00:00
|
|
|
if resolveWarning != "" {
|
|
|
|
response.Warnings = append(response.Warnings, resolveWarning)
|
2017-04-05 22:43:17 +00:00
|
|
|
}
|
|
|
|
|
2016-11-15 02:08:24 +00:00
|
|
|
return response, err
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|