kubernetes

Configure, deploy, and troubleshoot Kubernetes workloads with production-grade standards.

25|3|Updated Jul 14, 2026
One-click install
npx skills add https://github.com/nimadorostkar/Claude-Skills-collection --skill kubernetes-nimadorostkar
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kubernetes
Source: https://github.com/nimadorostkar/Claude-Skills-collection/tree/main/skills/devops/kubernetes
Command: npx skills add https://github.com/nimadorostkar/Claude-Skills-collection --skill kubernetes-nimadorostkar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill addresses the common pitfalls in Kubernetes deployments, such as misconfigured resource limits, ineffective health probes, and fragile rollout strategies that lead to downtime and production incidents.

Core Features & Use Cases

  • Workload Configuration: Provides best practices for Deployments, StatefulSets, and Jobs to ensure high availability.
  • Debugging & Diagnostics: Offers a systematic approach to resolving CrashLoopBackOff, OOMKilled, and networking issues using events and logs.
  • Use Case: When a service is failing to start or being evicted, use this skill to audit resource requests, verify probe logic, and identify the root cause via cluster events.

Quick Start

Use the kubernetes skill to review my deployment manifest and suggest optimal resource requests and probe configurations.

Frequently Asked Questions about kubernetes

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

FAQPage Schema
How do I fix a Kubernetes CrashLoopBackOff error?

Resolve a Kubernetes CrashLoopBackOff by using cluster events and logs to audit resource requests, verify health probe logic, and identify misconfigured limits causing the pod failure.

Why does my Kubernetes pod keep getting OOMKilled?

A Kubernetes pod gets OOMKilled when it exceeds configured memory limits. Audit your workload's resource requests and limits to ensure they match actual consumption and prevent evictions.

What's the best way to configure Kubernetes health probes for high availability?

Configure Kubernetes health probes by applying production-grade standards to readiness and liveness checks, ensuring proper rollout strategies and failure recovery for resilient workloads.

How do I debug Kubernetes deployment issues causing production downtime?

Debug Kubernetes deployment downtime by systematically diagnosing resource management, health monitoring, and cluster networking issues through event analysis and workload configuration audits.

When should I use StatefulSets instead of Deployments in Kubernetes?

Use StatefulSets for workloads requiring stable network identities and persistent storage, while Deployments suit stateless applications. Both need proper resource management for high availability.

Can I use Kubernetes Jobs for batch processing workloads?

Yes, Kubernetes Jobs support batch processing workloads. Configure them with appropriate resource requests and limits to ensure reliable execution alongside your Deployments and StatefulSets.