KubeConfig Cleanup Automation with Kubetidy

In partnership with

TechOps Examples

Hey — It's Govardhana MK 👋

Along with a use case deep dive, we identify the remote job opportunities, top news, tools, and articles in the TechOps industry.

👋 Before we begin... a big thank you to today's sponsor SUPERHUMAN AI

Find out why 1M+ professionals read Superhuman AI daily.

In 2 years you will be working for AI

Or an AI will be working for you

Here's how you can future-proof yourself:

  1. Join the Superhuman AI newsletter – read by 1M+ people at top companies

  2. Master AI tools, tutorials, and news in just 3 minutes a day

  3. Become 10X more productive using AI

Join 1,000,000+ pros at companies like Google, Meta, and Amazon that are using AI to get ahead.

IN TODAY'S EDITION

🧠 Use Case
  • KubeConfig Cleanup Automation with Kubetidy

🚀 Top News

👀 Remote Jobs

📚️ Resources

📢 Reddit Threads

🛠️ TOOL OF THE DAY

the art of command line - Master the command line, in one page.

  • This guide is for both beginners and experienced users.

  • The goals are breadth (everything important), specificity (give concrete examples of the most common case), and brevity (avoid things that aren't essential or digressions you can easily look up elsewhere).

🧠 USE CASE

KubeConfig Cleanup Automation with Kubetidy

If you’ve been working with Kubernetes for a while, your KubeConfig file has likely become an unmanageable mess.

Old clusters that no longer exist, stale user credentials, and outdated contexts make navigating and managing clusters frustrating.

Every kubectl get pods or kubectl config use-context cascades the clutter.

What is a KubeConfig File?

A KubeConfig file holds information about clusters, users, and contexts, allowing Kubernetes to manage connections and enable easy interaction across environments.

Breakdown of a KubeConfig File

Clusters: Contains the details of Kubernetes clusters, such as the API server endpoint and the cluster's Certificate Authority (CA).

clusters:

- name: techopsexamples-cluster

cluster:

server: https://k8s.techopsexamples.com

certificate-authority-data: Cluster CA

Users: Stores credentials (tokens or certificates) for authenticating the clusters.

users:

- name: techopsexamples-user

user:

token: abc123tokenxyz

Contexts: Links a user to a specific cluster, helping you switch between environments.

contexts:

- name: techopsexamples-context

context:

cluster: techopsexamples-cluster

user: techopsexamples-user

Some teams resort to manually editing KubeConfig, using:

kubectl config delete-cluster <cluster-name>

kubectl config delete-user <user-name>

kubectl config delete-context <context-name>

kubectl config unset contexts.<context-name>

View the KubeConfig:

kubectl config view

Switch to a different context:

kubectl config use-context techopsexamples-context

Add a new cluster:

kubectl config set-cluster techopsexamples-cluster --server=https://techopsexamples.cluster.com

Add a new user:

kubectl config set-credentials techopsexamples-user --token=abc123tokenxyz

Imagine you're managing multiple clusters across environments (dev, staging, production), and some temporary clusters for testing. Over time, your ~/.kube/config file bloats with expired entries, causing:

  • Increased risk of misconfigurations

  • Accidental interactions with deprecated clusters

  • Confusion when switching between active clusters

  • Delays in troubleshooting due to cluttered contexts

Better Solution:

KubeTidy, a tool built to automatically remove outdated clusters, users, and contexts from your KubeConfig file.

KubeTidy keeps only relevant entries, simplifying management, and backs up your file automatically.

It works on PowerShell (Windows/Linux/macOS) or as a krew plugin with Krew (Linux/macOS).


Sample cleanup summary:

I strongly benefit from integrating KubeTidy into our workflows to eliminate clutter, reduce misconfiguration risks, and keep our KubeConfig file efficient.

Give it a try !

I run a DevOps and Cloud consulting agency and have helped 17+ businesses, including Stanford, Hearst Corporation, CloudTruth, and more.

When your business needs my services, book a free 1:1 business consultation.

Looking to promote your company, product, service, or event to 40,000+ Cloud Native Professionals? Let's work together.