This section describes how to install a high-availability K3s cluster with an external database.
Single server clusters can meet a variety of use cases, but for environments where uptime of the Kubernetes control plane is critical, you can run K3s in an HA configuration. An HA K3s cluster is comprised of:
- Two or more server nodes that will serve the Kubernetes API and run other control plane services
- Zero or more agent nodes that are designated to run your apps and services
- An external datastore (as opposed to the embedded SQLite datastore used in single-server setups)
- A fixed registration address that is placed in front of the server nodes to allow agent nodes to register with the cluster
For more details on how these components work together, refer to the architecture section.
Agents register through the fixed registration address, but after registration they establish a connection directly to one of the server nodes. This is a websocket connection initiated by the k3s agent
process and it is maintained by a client-side load balancer running as part of the agent process.
Installation Outline
Setting up an HA cluster requires the following steps:
- Create an external datastore
- Launch server nodes
- Configure the fixed registration address
- Join agent nodes
1. Create an External Datastore
You will first need to create an external datastore for the cluster. See the Cluster Datastore Options documentation for more details.
2. Launch Server Nodes
K3s requires two or more server nodes for this HA configuration. See the Node Requirements guide for minimum machine requirements.
When running the k3s server
command on these nodes, you must set the datastore-endpoint
parameter so that K3s knows how to connect to the external datastore.
For example, a command like the following could be used to install the K3s server with a MySQL database as the external datastore:
curl -sfL https://get.k3s.io | sh -s - server \
--datastore-endpoint="mysql://username:password@tcp(hostname:3306)/database-name"
The datastore endpoint format differs based on the database type. For details, refer to the section on datastore endpoint formats.
To configure TLS certificates when launching server nodes, refer to the datastore configuration guide.
Note: The same installation options available to single-server installs are also available for high-availability installs. For more details, see the Installation and Configuration Options documentation.
By default, server nodes will be schedulable and thus your workloads can get launched on them. If you wish to have a dedicated control plane where no user workloads will run, you can use taints. The node-taint
parameter will allow you to configure nodes with taints, for example --node-taint k3s-controlplane=true:NoExecute
.
Once you’ve launched the k3s server
process on all server nodes, ensure that the cluster has come up properly with k3s kubectl get nodes
. You should see your server nodes in the Ready state.
3. Configure the Fixed Registration Address
Agent nodes need a URL to register against. This can be the IP or hostname of any of the server nodes, but in many cases those may change over time. For example, if you are running your cluster in a cloud that supports scaling groups, you may scale the server node group up and down over time, causing nodes to be created and destroyed and thus having different IPs from the initial set of server nodes. Therefore, you should have a stable endpoint in front of the server nodes that will not change over time. This endpoint can be set up using any number approaches, such as:
- A layer-4 (TCP) load balancer
- Round-robin DNS
- Virtual or elastic IP addresses
This endpoint can also be used for accessing the Kubernetes API. So you can, for example, modify your kubeconfig file to point to it instead of a specific node.
4. Optional: Join Agent Nodes
Because K3s server nodes are schedulable by default, the minimum number of nodes for an HA K3s server cluster is two server nodes and zero agent nodes. To add nodes designated to run your apps and services, join agent nodes to your cluster.
Joining agent nodes in an HA cluster is the same as joining agent nodes in a single server cluster. You just need to specify the URL the agent should register to and the token it should use.
K3S_TOKEN=SECRET k3s agent --server https://fixed-registration-address:6443