Skip to content

feat(ec): enable-ha command #3144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/enterprise/embedded-manage-nodes.mdx
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ To add nodes to a cluster:

* If the Embedded Cluster Config [roles](/reference/embedded-config#roles) key is not configured, all new nodes joined to the cluster are assigned the `controller` role by default. The `controller` role designates nodes that run the Kubernetes control plane. Controller nodes can also run other workloads, such as application or Replicated KOTS workloads.

* Roles are not updated or changed after a node is added. If you need to change a nodes role, reset the node and add it again with the new role.
* Roles are not updated or changed after a node is added. If you need to change a node's role, reset the node and add it again with the new role.

* For multi-node clusters with high availability (HA), at least three `controller` nodes are required. You can assign both the `controller` role and one or more `custom` roles to the same node. For more information about creating HA clusters with Embedded Cluster, see [Enable High Availability for Multi-Node Clusters (Alpha)](#ha) below.

@@ -145,3 +145,14 @@ To create a multi-node HA cluster:
[View a larger version of this image](/images/embedded-cluster-ha-prompt.png)

1. Wait for the migration to complete.

### Enabling High Availability

For existing clusters with 3 or more controller nodes that are not yet highly available, you can enable high availability using the `enable-ha` command.
This command will migrate your cluster to a highly available configuration.

To enable high availability:

```bash
sudo ./APP_SLUG enable-ha
```