From 50041753a75f2fff6b73b4728a0192e3388c093f Mon Sep 17 00:00:00 2001 From: Adrian Date: Mon, 19 Sep 2016 20:46:52 -0700 Subject: [PATCH] [bootstrapper] Rename uninstall to uninstall-ucp (#3193) Also add warnings about a swarm bug that will prevent them from joining new nodes until UCP is reinstalled. Resolves #3144. --- installation/uninstall.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/installation/uninstall.md b/installation/uninstall.md index 40fdfe83f3..b8196c79c3 100644 --- a/installation/uninstall.md +++ b/installation/uninstall.md @@ -24,19 +24,22 @@ After you uninstall UCP from the cluster, you'll no longer be able to enforce role-based access control to the cluster, or have a centralized way to monitor and manage the cluster. +WARNING: After uninstalling UCP from the cluster, you will no longer be able to +join new nodes using `docker swarm join` unless you reinstall UCP. + To uninstall UCP, log in into a manager node using ssh, and run: ```bash $ docker run --rm -it \ -v /var/run/docker.sock:/var/run/docker.sock --name ucp \ - docker/ucp uninstall-cluster --interactive + docker/ucp uninstall-ucp --interactive ``` This runs the uninstall command in interactive mode, so that you are prompted for any necessary configuration values. [Check the reference documentation](../reference/index.md) to learn the options -available in the `uninstall-cluster` command. +available in the `uninstall-ucp` command. ## Where to go next