kubernetes

Automate Kubernetes deployment, management, and troubleshooting workflows.

18|2|Updated Dec 12, 2025
One-click install
npx skills add https://github.com/Lobbi-Docs/claude --skill kubernetes-lobbi-docs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kubernetes
Source: https://github.com/Lobbi-Docs/claude/tree/main/.claude/skills/kubernetes
Command: npx skills add https://github.com/Lobbi-Docs/claude --skill kubernetes-lobbi-docs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill simplifies Kubernetes operations, enabling you to deploy, manage, and troubleshoot containerized applications at scale, from managing pods and deployments to configuring services and ingress.

Core Features & Use Cases

  • Resource Management: Create and manage Kubernetes Deployments, Services, and Ingress resources.
  • Pod & Deployment Control: Scale deployments, restart pods, and view logs for debugging.
  • Troubleshooting: Follow a systematic flow to diagnose and resolve cluster issues.
  • Use Case: Your application deployment is failing in Kubernetes. Use this skill to check pod statuses, view events, inspect logs, and describe the failing pod to quickly identify the root cause, such as an image pull error or resource exhaustion.

Quick Start

Use the kubernetes skill to list all pods in the 'agents' namespace.

Frequently Asked Questions about kubernetes

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy applications to Kubernetes and manage them at scale?

Kubernetes automates container deployment and management through Deployments, Services, and Ingress resources. Use kubectl commands to create and scale deployments, configure services for networking, and set up ingress for external access to your containerized applications.

How do I troubleshoot failing pods and deployments in Kubernetes?

Systematically diagnose cluster issues by checking pod statuses, viewing events, inspecting logs, and describing resources. Common causes include image pull errors, resource exhaustion, or misconfigured health checks—inspect these areas to identify root causes quickly.

Can I manage resource requests, limits, and security settings for Kubernetes pods?

Yes. Kubernetes supports configuring resource requests and limits per pod, applying securityContext settings for privilege isolation, and defining health checks. These features ensure pods have adequate resources and run with appropriate security constraints.

What's the best way to organize and manage multiple namespaces in Kubernetes?

Use namespace administration to logically partition cluster resources, isolate workloads, and manage access control. Namespaces let you organize deployments, services, and pods by environment, team, or application without interference between groups.

How do I configure networking and external access for Kubernetes applications?

Configure Services to expose pods internally or externally, and use Ingress resources to route HTTP/HTTPS traffic to your applications. This provides flexible networking options from simple ClusterIP services to load-balanced external endpoints.

Do I need kubectl to manage Kubernetes resources?

kubectl is the standard CLI for Kubernetes operations—managing pods, deployments, services, and troubleshooting. It handles resource templates, queries cluster state, and executes administrative tasks essential for day-to-day Kubernetes management.