2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "node update"
|
|
|
|
description: "The node update command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "resources, update, dynamically"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-10-19 13:25:45 -04:00
|
|
|
<!-- This file is maintained within the docker/docker Github
|
|
|
|
repository at https://github.com/docker/docker/. Make all
|
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
2016-06-13 22:57:19 -04:00
|
|
|
## update
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
|
|
|
Usage: docker node update [OPTIONS] NODE
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Update a node
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Options:
|
2016-06-17 00:28:07 -04:00
|
|
|
--availability string Availability of the node (active/pause/drain)
|
|
|
|
--help Print usage
|
2016-06-30 20:33:43 -04:00
|
|
|
--label-add value Add or update a node label (key=value) (default [])
|
|
|
|
--label-rm value Remove a node label if exists (default [])
|
2016-06-17 00:28:07 -04:00
|
|
|
--role string Role of the node (worker/manager)
|
2016-07-07 14:43:18 -04:00
|
|
|
```
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-07-11 12:11:18 -04:00
|
|
|
### Add label metadata to a node
|
|
|
|
|
|
|
|
Add metadata to a swarm node using node labels. You can specify a node label as
|
|
|
|
a key with an empty value:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ docker node update --label-add foo worker1
|
|
|
|
```
|
|
|
|
|
|
|
|
To add multiple labels to a node, pass the `--label-add` flag for each label:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ docker node update --label-add foo --label-add bar worker1
|
|
|
|
```
|
|
|
|
|
|
|
|
When you [create a service](service_create.md),
|
|
|
|
you can use node labels as a constraint. A constraint limits the nodes where the
|
|
|
|
scheduler deploys tasks for a service.
|
|
|
|
|
|
|
|
For example, to add a `type` label to identify nodes where the scheduler should
|
|
|
|
deploy message queue service tasks:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ docker node update --label-add type=queue worker1
|
|
|
|
```
|
|
|
|
|
|
|
|
The labels you set for nodes using `docker node update` apply only to the node
|
|
|
|
entity within the swarm. Do not confuse them with the docker daemon labels for
|
2016-10-20 11:40:36 -04:00
|
|
|
[dockerd](https://docs.docker.com/engine/userguide/labels-custom-metadata/#daemon-labels).
|
2016-07-11 12:11:18 -04:00
|
|
|
|
|
|
|
For more information about labels, refer to [apply custom
|
2016-10-20 11:40:36 -04:00
|
|
|
metadata](https://docs.docker.com/engine/userguide/labels-custom-metadata/).
|
2016-06-13 22:57:19 -04:00
|
|
|
|
|
|
|
## Related information
|
|
|
|
|
2016-12-13 09:15:08 -05:00
|
|
|
* [node demote](node_demote.md)
|
2016-06-13 22:57:19 -04:00
|
|
|
* [node inspect](node_inspect.md)
|
|
|
|
* [node ls](node_ls.md)
|
2016-12-13 09:15:08 -05:00
|
|
|
* [node promote](node_promote.md)
|
|
|
|
* [node ps](node_ps.md)
|
2016-06-13 22:57:19 -04:00
|
|
|
* [node rm](node_rm.md)
|