Kubernetes Guides

How to setup 2 node cluster on k3s?

In this post, we are going to take look at Lightweight Kubernetes engine k3s that can run on edge, IoT, and appliances. Rancher k3s is great for offline development, prototyping, and testing purpose. You can very well use it on a VM as a small, cheap, reliable k8s for CI/CD.

What is k3s?

k3s is a fully compliant Kubernetes distribution with the following changes:

  1. Packaged as a single binary.
  2. Lightweight storage backend based on sqlite3 is the default storage mechanism. etcd3, MySQL, Postgres also available.
  3. A simple launcher that handles a lot of the complexity of TLS and options.
  4. Secure by default with reasonable defaults for lightweight environments.
  5. Minimal to no OS dependencies. k3s packages require following dependencies
    • containerd
    • Flannel
    • CoreDNS
    • CNI
    • Host utilities (iptables, socat, etc)
    • Ingress controller (traefik)
    • An embedded service load balancer
    • An embedded network policy controller
Image – How it Works ?

In the next section, we will look at how to install and deploy sample application on to K3s cluster.

Step#1. Install K3s

In the below steps, we would be installing the k3s cluster, it would install a limited set of components like api-server, controller-manager, scheduler, kubelet, cni, kube-proxy.

Pre-requisites

  • k3s is officially supported and tested on the following operating systems but it can run on any of flavor of Linux
  • Minimum recommendations on Hardware
    • RAM: 512MB Minimum
    • CPU: 1 Minimum
  • For detailed installation requirements, please check here.

k3s can be deployed via installation script located at https://get.k3s.io, use the following command to install.

curl -sfL https://get.k3s.io | sh -
Image – Install K3s
Image – Check K3s version

To avoid colliding with a kubectl already installed and to avoid overwriting any existing Kubernetes configuration file, k3s adds a k3s.kubectl command. If you are only using k3s, consider adding an alias command.

Step#2. Verify Installation

At this point you have installed k3s, check whether the newly deployed node is in Ready state using the following command.

Image – Verify Microk8s Installation

Step#3. Deploy sample application

At this point, you have a fully functional Kubernetes cluster. The following command will deploy the Nginx web application.

kubectl run nginx --image nginx:alpine

Image – Deploy the application

Once Nginx has been deployed, the application can be exposed with the following command.

k3s kubectl expose deployment nginx \
--port 80 \
--target-port 80 \
--type ClusterIP \
--selector=run=nginx \
--name nginx

Now that services are exposed outside, we can launch lynx a terminal-based web browser to access the Nginx application using the following command.

export CLUSTER_IP=$(k3s kubectl get svc/nginx -o go-template='{{(index .spec.clusterIP)}}')
echo CLUSTER_IP=$CLUSTER_IP
lynx $CLUSTER_IP:80

Image – Nginx app deployed on Microk8s cluster

Congrats! now you have a deployed Nginx application to a fully functional Kubernetes cluster using k3s.

In the next section, we will look at how to install and configure 2-nodes to this k3s cluster.

Step#4. Install Worker nodes

To install on worker nodes and add them to the cluster, run the installation script with the K3S_URL and K3S_TOKEN environment variables.

curl -sfL https://get.k3s.io | K3S_URL=https://<server>:6443 K3S_TOKEN=<token> sh -

Image – Get the server token from the Master node
Image – Install Worker Node #1

Now go back to Master node, check whether the newly deployed node is in Ready state using the following command.

Image – New Worker Node is in Ready State

Install the next worker node and add them to the cluster using the following command:

curl -sfL https://get.k3s.io | K3S_URL=https://<server>:6443 K3S_TOKEN=<token> sh -

Image – Install 2nd Worker Node

Now go back to Master node, check whether the newly deployed node is in Ready state using the following command.

Image – 2nd Worker node is in Ready state

Congrats! now we have fully functional 2-node Kubernetes cluster using K3s.

Like this post? Don’t forget to share it!

Useful Resources :

 

Summary
Article Name
How to setup 2 node cluster on K3s?
Description
In this post, we are going to take look at Lightweight Kubernetes engine K3s, we will also look at how to install 2-node and deploy sample application on to this cluster.
Author
Publisher Name
Upnxtblog
Publisher Logo
Karthik

Allo! My name is Karthik,experienced IT professional.Upnxtblog covers key technology trends that impacts technology industry.This includes Cloud computing,Blockchain,Machine learning & AI,Best mobile apps, Best tools/open source libs etc.,I hope you would love it and you can be sure that each post is fantastic and will be worth your time.

Share
Published by
Karthik

Recent Posts

Navigating Volatility: Investing in Crypto Derivatives and Risk Management Strategies

The cryptocurrency market is famed for its volatility, presenting each opportunity and demanding situations for…

1 week ago

How Game Developers Use AI in Mobile Games in 2024?

Games since time immemorial have been winning at captivating the users and teleporting them onto…

2 weeks ago

The Impact of AI on Software Development

We are living within an innovation curve wherein cutting-edge technologies are making a hustle and…

2 weeks ago

AI Tools for Research Paper Writing: Learn What They Can Do

Whether it’s the healthcare industry or the automobile sector, artificial intelligence has left its impact…

4 weeks ago

Embracing Innovation: 5 Ways AI is Transforming the Landscape in 2024

Facts only- The big Artificial Intelligence push is unraveling in 2024. No, it wasn’t merely…

4 weeks ago

The Startup Guide to Acquiring Exceptional Developers

In the fiercely competitive world of Hire Developers for Startup, success hinges not just on…

2 months ago

This website uses cookies.