Kubernetes

Rancher connect to existing cluster

One of the challenges with working with plain Kubernetes is the number of low-level management tasks that must be handled using the command line, specifically with the kubectl command. While I am a huge fan of the command line and the power of configuration using it, there are certainly times when GUI management is nice and makes life much easier. Especially in corporate environments, if you are the K8s admin, you probably don’t want developers interacting with the cluster low-level using kubectl. They are going to be consuming resources in other ways. Having a GUI provides an answer to this challenge. It can also be helpful for other admin tasks. Rancher is a great solution for creating and also managing existing Kubernetes clusters. Not too long ago, Rancher 2.x was released with a new dashboard experience. Let’s take a look at Rancher connect to existing cluster and see how to install rancher and import your existing cluster.

What is Rancher?

Rancher is a complete software stack for teams adopting containers. As mentioned at the outset, Rancher provides a management GUI for managing your Kubernetes clusters and provides a management solution that allows managing multiple Kubernetes clusters, not just one. So you can use Rancher to spin up and provision new clusters and manage existing clusters. It provides a wide range of options for provisioning new clusters including:

Hosted Kubernetes providers

  • Amazon EKS
  • Azure AKS
  • Google GKE

Provisioning new nodes and creating a cluster using RKE:

  • Amazon EC2
  • Azure
  • Digital Ocean
  • Harvester
  • Linode
  • VMware vSphere
  • Custom
Creating new Kubernetes clusters using Rancher
Creating new Kubernetes clusters using Rancher

As you see below, we have a remote Kubernetes cluster joined (cloudlocalk8s) as well as the local managed Kubernetes cluster that is provisioned by Rancher.

The Rancher dashboard showing managed Kubernetes clusters
The Rancher dashboard showing managed Kubernetes clusters

It provides the GUI workflow that makes working with Kubernetes on a daily basis, extremely easy.

Key features

What key features are provided by Rancher for Kubernetes management?

  • 100% free and open source
  • Unified multi-cluster management
  • Hybrid & multi-cloud support
  • Centralized app catalog
  • Consistent security policy and compliance
  • Accelerate Develops adoption
  • Freedom to innovate

Installing Rancher

Installing Rancher is simple. In my lab environment, I have Rancher running on a simple one-node configuration. For production, you will want to use a high-availability configuration which you can read more about here:

On an Ubuntu 20.04 box, I installed Docker, using the officially supported version for Rancher. At the time of this writing, the Docker 20.10 Rancher script is used. You can find the currently supported version of Docker here:

Installing Docker for Rancher installation
Installing Docker for Rancher installation

After you install Docker, you can install Rancher. You can do that with the command:

sudo docker run --privileged -d --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher
Installing the Rancher Docker image
Installing the Rancher Docker image

Run the docker ps command to see your running containers:

docker ps
Verifying the Rancher Docker container is running
Verifying the Rancher Docker container is running

Rancher connect to existing cluster

Now, let’s look at Kubernetes Rancher 2 Cluster Management. Once you have Rancher up and running and are logged into your Rancher host, you will see the below dashboard presented. Click the Import Existing button.

Importing an existing Kubernetes cluster
Importing an existing Kubernetes cluster

I have a vanilla Kubernetes cluster running as virtual machines inside my VMware vSphere home lab environment. You can read about how to spin up your own Kubernetes cluster using Ubuntu VMs and view my Terraform scripts here:

For the purposes of adopting my Kubernetes cluster, I am choosing Generic here since it fits my environment and I am not using one of the Kubernetes providers in the cloud.

Choose the type of Kubernetes cluster to import using Rancher
Choose the type of Kubernetes cluster to import using Rancher

On the import Generic wizard, name your Kubernetes cluster. This is just a friendly name that you will see the K8s cluster referenced as in your Rancher dashboard. Click Create.

Name the Kubernetes cluster you want to import
Name the Kubernetes cluster you want to import

Once you click Create, you will see the registration commands displayed for you to copy and run on your existing Kubernetes cluster. For most who are using self-signed certificates in their labs, you will need to use the second command listed. Rancher has accounted for self-signed, untrusted SSL connections and provide the option for using a command to get around the insecure warnings.

Rancher presents the commands you need to run on your Kubernetes cluster
Rancher presents the commands you need to run on your Kubernetes cluster

Below, I am using the insecure option on my Kubernetes cluster.

Running the insecure Rancher option for importing the Kubernetes cluster
Running the insecure Rancher option for importing the Kubernetes cluster

After running the command on the Kubernetes cluster, the cluster is imported successfully.

The Kubernetes cluster is imported successfully
The Kubernetes cluster is imported successfully

In case you are wondering what it does on your Kubernetes cluster, it installs the cattle-fleet-system and cattle-impersonation-system namespaces.

Viewing the namespaces created by Rancher
Viewing the namespaces created by Rancher

It also provisions Rancher pods in the namespaces. You can think of these as agents that run inside your Kubernetes cluster.

Viewing pods contained in the cattle system namespace
Viewing pods contained in the cattle system namespace

Wrapping Up

With Rancher connect to existing cluster, you can manage your existing Kubernets clusters in your environment. It provides many key features, including multi-cluster Kubernetes management and it is 100% free. Stay tuned for more Rancher content coming through the pipes early in 2022. Be sure to check out more about Rancher and learn how to download it here:

Subscribe to VirtualizationHowto via Email 🔔

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Brandon Lee

Brandon Lee is the Senior Writer, Engineer and owner at Virtualizationhowto.com and has over two decades of experience in Information Technology. Having worked for numerous Fortune 500 companies as well as in various industries, Brandon has extensive experience in various IT segments and is a strong advocate for open source technologies. Brandon holds many industry certifications, loves the outdoors and spending time with family.

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.