You can replace a master node in an existing DC/OS cluster. You should keep in mind, however, that you should only ever replace one master at a time. The following steps summarize how to replace a master node for a DC/OS cluster.
To replace a master node:
-
Back up the DC/OS identity and access management CockroachDB® database to a file by running a command similar to the following on the master node:
dcos-shell iam-database-backup > ~/iam-backup.sql
For more information about backing up the DC/OS identity and access management CockroachDB database, see How do I backup the IAM database?
-
Enterprise Back up the Exhibitor TLS artifacts in
/var/lib/dcos/exhibitor-tls-artifacts
if it exists.tar czf exhibitor-tls-artifacts.tar.gz /var/lib/dcos/exhibitor-tls-artifacts
-
Shut down the master node you want to replace.
-
Add the new master node to replace the one taken offline in the previous step.
Static master discovery
If you have configured static master discovery in your
config.yaml
file (master_discovery: static
):- Verify that the new server has the same internal IP address as the old master node.
- Verify that the old server is completely unreachable from the cluster.
- Enterprise If the Exhibitor TLS artifacts existed on the old master node, then copy
exhibitor-tls-artifacts.tar.gz
to the new master node.
Extract the archive on the masterscp exhibitor-tls-artifacts.tar.gz root@<new-master-host>:/root
tar xzf /root/exhibitor-tls-artifacts.tar.gz -C /
- Enterprise If the Exhibitor TLS artifacts did not exist on the old master node, then ensure Exhibitor TLS is disabled in the
config.yaml
file:exhibitor_tls_required: false
- Install the new master as you would normally.
Dynamic master discovery
If you have configured dynamic master discovery in your
config.yaml
file (master_discovery: master_http_loadbalancer
):- Install the new master as you would normally.
-
Check that the new master is healthy.
To validate that the master node replacement completed successfully, follow the steps to Validate the upgrade as described in Upgrading a master.