mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Aaron Lehmann](/assets/img/avatar_default.png)
Implement the proposal from https://github.com/docker/docker/issues/24430#issuecomment-233100121 Removes acceptance policy and secret in favor of an automatically generated join token that combines the secret, CA hash, and manager/worker role into a single opaque string. Adds a docker swarm join-token subcommand to inspect and rotate the tokens. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
32 lines
587 B
Markdown
32 lines
587 B
Markdown
<!--[metadata]>
|
|
+++
|
|
title = "node demote"
|
|
description = "The node demote command description and usage"
|
|
keywords = ["node, demote"]
|
|
[menu.main]
|
|
parent = "smn_cli"
|
|
+++
|
|
<![end-metadata]-->
|
|
|
|
# node demote
|
|
|
|
```markdown
|
|
Usage: docker node demote NODE [NODE...]
|
|
|
|
Demote a node from manager in the swarm
|
|
|
|
Options:
|
|
--help Print usage
|
|
|
|
```
|
|
|
|
Demotes an existing manager so that it is no longer a manager. This command targets a docker engine that is a manager in the swarm cluster.
|
|
|
|
|
|
```bash
|
|
$ docker node demote <node name>
|
|
```
|
|
|
|
## Related information
|
|
|
|
* [node promote](node_promote.md)
|