Add unlock key rotation

Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
Upstream-commit: de1b8f9439
Component: cli
This commit is contained in:
Aaron Lehmann
2016-11-09 16:09:01 -08:00
parent 50e796a0be
commit b9674ce3e8
+1
View File
@@ -15,6 +15,7 @@ func (cli *Client) SwarmUpdate(ctx context.Context, version swarm.Version, swarm
query.Set("version", strconv.FormatUint(version.Index, 10))
query.Set("rotateWorkerToken", fmt.Sprintf("%v", flags.RotateWorkerToken))
query.Set("rotateManagerToken", fmt.Sprintf("%v", flags.RotateManagerToken))
query.Set("rotateManagerUnlockKey", fmt.Sprintf("%v", flags.RotateManagerUnlockKey))
resp, err := cli.post(ctx, "/swarm/update", query, swarm, nil)
ensureReaderClosed(resp)
return err