diff --git a/content/guides/orchestration.md b/content/guides/orchestration.md index 8127e98e611a..f2cbc26e4da8 100644 --- a/content/guides/orchestration.md +++ b/content/guides/orchestration.md @@ -191,7 +191,7 @@ Docker Desktop runs primarily on Docker Engine, which has everything you need to To add a worker to this swarm, run the following command: - docker swarm join --token SWMTKN-1-3e0hh0jd5t4yjg209f4g5qpowbsczfahv2dea9a1ay2l8787cf-2h4ly330d0j917ocvzw30j5x9 192.168.65.3:2377 + docker swarm join --token SWMTKN-1-aaa 192.168.65.3:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. ``` @@ -255,7 +255,7 @@ Docker Desktop runs primarily on Docker Engine, which has everything you need to To add a worker to this swarm, run the following command: - docker swarm join --token SWMTKN-1-3e0hh0jd5t4yjg209f4g5qpowbsczfahv2dea9a1ay2l8787cf-2h4ly330d0j917ocvzw30j5x9 192.168.65.3:2377 + docker swarm join --token SWMTKN-1-aaa 192.168.65.3:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. ``` diff --git a/content/manuals/engine/network/drivers/overlay.md b/content/manuals/engine/network/drivers/overlay.md index e9f2daafc096..1762d056ff1b 100644 --- a/content/manuals/engine/network/drivers/overlay.md +++ b/content/manuals/engine/network/drivers/overlay.md @@ -374,7 +374,7 @@ This example refers to the hosts as `host1` and `host2`. To add a worker to this swarm, run the following command: - docker swarm join --token SWMTKN-1-5g90q48weqrtqryq4kj6ow0e8xm9wmv9o6vgqc5j320ymybd5c-8ex8j0bc40s6hgvy5ui5gl4gy 172.31.47.252:2377 + docker swarm join --token SWMTKN-1-aaa 172.31.47.252:2377 ``` On `host2`, join the swarm using the token from the previous output: diff --git a/content/manuals/engine/swarm/join-nodes.md b/content/manuals/engine/swarm/join-nodes.md index 42e8e6d2e4d8..65aef0dbceb3 100644 --- a/content/manuals/engine/swarm/join-nodes.md +++ b/content/manuals/engine/swarm/join-nodes.md @@ -34,7 +34,7 @@ $ docker swarm join-token worker To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 ``` @@ -42,7 +42,7 @@ Run the command from the output on the worker to join the swarm: ```console $ docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 This node joined a swarm as a worker. @@ -82,7 +82,7 @@ $ docker swarm join-token manager To add a manager to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-61ztec5kyafptydic6jfc1i33t37flcl4nuipzcusor96k7kby-5vy9t8u35tuqm7vh67lrz9xp6 \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 ``` @@ -90,7 +90,7 @@ Run the command from the output on the new manager node to join it to the swarm: ```console $ docker swarm join \ - --token SWMTKN-1-61ztec5kyafptydic6jfc1i33t37flcl4nuipzcusor96k7kby-5vy9t8u35tuqm7vh67lrz9xp6 \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 This node joined a swarm as a manager. diff --git a/content/manuals/engine/swarm/networking.md b/content/manuals/engine/swarm/networking.md index 2187d9d97ec2..16369a35b7fd 100644 --- a/content/manuals/engine/swarm/networking.md +++ b/content/manuals/engine/swarm/networking.md @@ -436,7 +436,7 @@ This example joins the swarm managed by host `192.168.99.100:2377` and sets the ```console $ docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2d7c \ + --token SWMTKN-1-aaa \ --advertise-addr eth0 \ --data-path-addr eth1 \ 192.168.99.100:2377 diff --git a/content/manuals/engine/swarm/swarm-mode.md b/content/manuals/engine/swarm/swarm-mode.md index 4ca1cb347522..e0de7caace7d 100644 --- a/content/manuals/engine/swarm/swarm-mode.md +++ b/content/manuals/engine/swarm/swarm-mode.md @@ -58,7 +58,7 @@ Swarm initialized: current node (dxn1zf6l61qsb1josjja83ngz) is now a manager. To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. @@ -153,7 +153,7 @@ $ docker swarm join-token worker To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 This node joined a swarm as a worker. @@ -167,7 +167,7 @@ $ docker swarm join-token manager To add a manager to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-59egwe8qangbzbqb3ryawxzk3jn97ifahlsrw01yar60pmkr90-bdjfnkcflhooyafetgjod97sz \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 ``` @@ -176,7 +176,7 @@ Pass the `--quiet` flag to print only the token: ```console $ docker swarm join-token --quiet worker -SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c +SWMTKN-1-aaa ``` Be careful with the join tokens because they are the secrets necessary to join @@ -207,7 +207,7 @@ $ docker swarm join-token --rotate worker To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-2kscvs0zuymrsc9t0ocyy1rdns9dhaodvpl639j2bqx55uptag-ebmn5u927reawo27s3azntd44 \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 ``` diff --git a/content/manuals/engine/swarm/swarm-tutorial/add-nodes.md b/content/manuals/engine/swarm/swarm-tutorial/add-nodes.md index cfd3e2ee5dad..13db76df5646 100644 --- a/content/manuals/engine/swarm/swarm-tutorial/add-nodes.md +++ b/content/manuals/engine/swarm/swarm-tutorial/add-nodes.md @@ -18,7 +18,7 @@ to add worker nodes. ```console $ docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 This node joined a swarm as a worker. @@ -33,7 +33,7 @@ to add worker nodes. To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 ``` @@ -46,7 +46,7 @@ to add worker nodes. ```console $ docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 This node joined a swarm as a worker. diff --git a/content/manuals/engine/swarm/swarm-tutorial/create-swarm.md b/content/manuals/engine/swarm/swarm-tutorial/create-swarm.md index 3da6685694e8..f06783135280 100644 --- a/content/manuals/engine/swarm/swarm-tutorial/create-swarm.md +++ b/content/manuals/engine/swarm/swarm-tutorial/create-swarm.md @@ -29,7 +29,7 @@ machines. To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-49nj1cmql0jkz5s954yi3oex3nedyz0fb0xx14ie39trti4wxv-8vxv8rssmk743ojnwacrr2e7c \ + --token SWMTKN-1-aaa \ 192.168.99.100:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. diff --git a/content/manuals/engine/swarm/swarm_manager_locking.md b/content/manuals/engine/swarm/swarm_manager_locking.md index cba46065e34c..924f4d667d60 100644 --- a/content/manuals/engine/swarm/swarm_manager_locking.md +++ b/content/manuals/engine/swarm/swarm_manager_locking.md @@ -39,7 +39,7 @@ Swarm initialized: current node (k1q27tfyx9rncpixhk69sa61v) is now a manager. To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-0j52ln6hxjpxk2wgk917abcnxywj3xed0y8vi1e5m9t3uttrtu-7bnxvvlz2mrcpfonjuztmtts9 \ + --token SWMTKN-1-aaa \ 172.31.46.109:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. @@ -47,7 +47,7 @@ To add a manager to this swarm, run 'docker swarm join-token manager' and follow To unlock a swarm manager after it restarts, run the `docker swarm unlock` command and provide the following key: - SWMKEY-1-WuYH/IX284+lRcXuoVf38viIDK3HJEKY13MIHX+tTt8 + SWMKEY-1-aaa ``` Store the key in a safe place, such as in a password manager. @@ -75,7 +75,7 @@ Swarm updated. To unlock a swarm manager after it restarts, run the `docker swarm unlock` command and provide the following key: - SWMKEY-1-+MrE8NgAyKj5r3NcR4FiQMdgu+7W72urH0EZeSmP/0Y + SWMKEY-1-aaa Please remember to store this key in a password manager, since without it you will not be able to restart the manager. @@ -124,7 +124,7 @@ $ docker swarm unlock-key To unlock a swarm manager after it restarts, run the `docker swarm unlock` command and provide the following key: - SWMKEY-1-8jDgbUNlJtUe5P/lcr9IXGVxqZpZUXPzd+qzcGp4ZYA + SWMKEY-1-aaa Please remember to store this key in a password manager, since without it you will not be able to restart the manager. @@ -146,7 +146,7 @@ Successfully rotated manager unlock key. To unlock a swarm manager after it restarts, run the `docker swarm unlock` command and provide the following key: - SWMKEY-1-8jDgbUNlJtUe5P/lcr9IXGVxqZpZUXPzd+qzcGp4ZYA + SWMKEY-1-aaa Please remember to store this key in a password manager, since without it you will not be able to restart the manager. diff --git a/data/cli/engine/docker_swarm_init.yaml b/data/cli/engine/docker_swarm_init.yaml index 3344dd81ddc4..a158449ff911 100644 --- a/data/cli/engine/docker_swarm_init.yaml +++ b/data/cli/engine/docker_swarm_init.yaml @@ -194,7 +194,7 @@ examples: |- To add a worker to this swarm, run the following command: - docker swarm join --token SWMTKN-1-3pu6hszjas19xyp7ghgosyx9k8atbfcr8p2is99znpy26u2lkl-1awxwuwd3z9j1z3puu7rcgdbx 172.17.0.2:2377 + docker swarm join --token SWMTKN-1-aaa 172.17.0.2:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. ``` @@ -348,4 +348,3 @@ experimental: false experimentalcli: false kubernetes: false swarm: true - diff --git a/data/cli/engine/docker_swarm_join-token.yaml b/data/cli/engine/docker_swarm_join-token.yaml index 69a69bb5cab2..4d84a97bbb9c 100644 --- a/data/cli/engine/docker_swarm_join-token.yaml +++ b/data/cli/engine/docker_swarm_join-token.yaml @@ -63,7 +63,7 @@ examples: |- To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-3pu6hszjas19xyp7ghgosyx9k8atbfcr8p2is99znpy26u2lkl-1awxwuwd3z9j1z3puu7rcgdbx \ + --token SWMTKN-1-aaa \ 172.17.0.2:2377 $ docker swarm join-token manager @@ -71,7 +71,7 @@ examples: |- To add a manager to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-3pu6hszjas19xyp7ghgosyx9k8atbfcr8p2is99znpy26u2lkl-7p73s1dx5in4tatdymyhg9hu2 \ + --token SWMTKN-1-aaa \ 172.17.0.2:2377 ``` @@ -85,7 +85,7 @@ examples: |- To add a worker to this swarm, run the following command: docker swarm join \ - --token SWMTKN-1-3pu6hszjas19xyp7ghgosyx9k8atbfcr8p2is99znpy26u2lkl-b30ljddcqhef9b9v4rs7mel7t \ + --token SWMTKN-1-aaa \ 172.17.0.2:2377 ``` @@ -96,7 +96,7 @@ examples: |- ```console $ docker swarm join-token -q worker - SWMTKN-1-3pu6hszjas19xyp7ghgosyx9k8atbfcr8p2is99znpy26u2lkl-b30ljddcqhef9b9v4rs7mel7t + SWMTKN-1-aaa ``` ### `--rotate` {#rotate} @@ -128,4 +128,3 @@ experimental: false experimentalcli: false kubernetes: false swarm: true - diff --git a/data/cli/engine/docker_swarm_join.yaml b/data/cli/engine/docker_swarm_join.yaml index cab96ffe3db1..7bd9035ffa11 100644 --- a/data/cli/engine/docker_swarm_join.yaml +++ b/data/cli/engine/docker_swarm_join.yaml @@ -79,7 +79,7 @@ examples: |- The example below demonstrates joining a manager node using a manager token. ```console - $ docker swarm join --token SWMTKN-1-3pu6hszjas19xyp7ghgosyx9k8atbfcr8p2is99znpy26u2lkl-7p73s1dx5in4tatdymyhg9hu2 192.168.99.121:2377 + $ docker swarm join --token SWMTKN-1-aaa 192.168.99.121:2377 This node joined a swarm as a manager. $ docker node ls @@ -97,7 +97,7 @@ examples: |- The example below demonstrates joining a worker node using a worker token. ```console - $ docker swarm join --token SWMTKN-1-3pu6hszjas19xyp7ghgosyx9k8atbfcr8p2is99znpy26u2lkl-1awxwuwd3z9j1z3puu7rcgdbx 192.168.99.121:2377 + $ docker swarm join --token SWMTKN-1-aaa 192.168.99.121:2377 This node joined a swarm as a worker. $ docker node ls @@ -166,4 +166,3 @@ experimental: false experimentalcli: false kubernetes: false swarm: true - diff --git a/data/cli/engine/docker_swarm_unlock-key.yaml b/data/cli/engine/docker_swarm_unlock-key.yaml index 93ab3496fa47..10ac6af33dc0 100644 --- a/data/cli/engine/docker_swarm_unlock-key.yaml +++ b/data/cli/engine/docker_swarm_unlock-key.yaml @@ -58,7 +58,7 @@ examples: |- To unlock a swarm manager after it restarts, run the `docker swarm unlock` command and provide the following key: - SWMKEY-1-fySn8TY4w5lKcWcJPIpKufejh9hxx5KYwx6XZigx3Q4 + SWMKEY-1-aaa Remember to store this key in a password manager, since without it you will not be able to restart the manager. @@ -75,7 +75,7 @@ examples: |- To unlock a swarm manager after it restarts, run the `docker swarm unlock` command and provide the following key: - SWMKEY-1-7c37Cc8654o6p38HnroywCi19pllOnGtbdZEgtKxZu8 + SWMKEY-1-aaa Remember to store this key in a password manager, since without it you will not be able to restart the manager. @@ -86,7 +86,7 @@ examples: |- ```console $ docker swarm unlock-key -q - SWMKEY-1-7c37Cc8654o6p38HnroywCi19pllOnGtbdZEgtKxZu8 + SWMKEY-1-aaa ``` ### `--rotate` {#rotate} @@ -104,4 +104,3 @@ experimental: false experimentalcli: false kubernetes: false swarm: true -