Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
openhands avatar

Kubernetes

  • 16 installs
  • 134 repo stars
  • Updated August 4, 2026
  • openhands/extensions

Helps with devops & ci/cd tasks.

About

kubernetes is a Claude Code skill for devops & ci/cd. It helps solo builders move faster with AI-assisted development.

  • kubernetes
  • DevOps & CI/CD
  • AI-coding skill

Kubernetes by the numbers

  • 16 all-time installs (skills.sh)
  • Ranked #942 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/openhands/extensions --skill kubernetes

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs16
repo stars134
Last updatedAugust 4, 2026
Repositoryopenhands/extensions

What it does

Helps with devops & ci/cd tasks.

Files

SKILL.mdMarkdownGitHub ↗

Kubernetes Local Development with KIND

KIND Installation and Setup

KIND (Kubernetes IN Docker) is a tool for running local Kubernetes clusters using Docker containers as nodes. It's designed for testing Kubernetes applications locally.

IMPORTANT: Before you proceed with installation, make sure you have docker installed locally.

Installation

To install KIND on a Debian/Ubuntu system:

# Download KIND binary
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
# Make it executable
chmod +x ./kind
# Move to a directory in your PATH
sudo mv ./kind /usr/local/bin/

To install kubectl:

# Download kubectl
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
# Make it executable
chmod +x kubectl
# Move to a directory in your PATH
sudo mv ./kubectl /usr/local/bin/

Creating a Cluster

Create a basic KIND cluster:

kind create cluster

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.