kubernetes-helper

Generate and validate Kubernetes manifests and Helm charts for containerized applications.

4|1|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/xcrrr/claude-skills --skill kubernetes-helper-xcrrr
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kubernetes-helper
Source: https://github.com/xcrrr/claude-skills/tree/main/skills/devops/kubernetes-helper
Command: npx skills add https://github.com/xcrrr/claude-skills --skill kubernetes-helper-xcrrr

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates the generation, validation, and explanation of Kubernetes manifests and Helm chart structures, helping teams deploy reliable containerized workloads.

Core Features & Use Cases

  • Generate Deployment, StatefulSet, Service, Ingress, ConfigMap, Secret, HPA, and Helm chart templates with sane defaults and best practices.
  • Explain Kubernetes concepts and provide troubleshooting guidance for common issues like CrashLoopBackOff, ImagePullBackOff, and OOMKilled.
  • Validate manifests against common schema and consistency checks, and provide ready-to-apply YAML snippets.

Quick Start

Generate a ready-to-use Deployment and Service manifest for a stateless app with health checks, resource requests/limits, and rolling updates.

Frequently Asked Questions about kubernetes-helper

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

FAQPage Schema
How do I generate Kubernetes manifests with health checks and resource limits?

Generate Kubernetes manifests by specifying your workload type to produce Deployment, Service, and HPA YAML templates with sane defaults for resource requests, limits, and liveness probes. This provides ready-to-apply configurations with rolling update strategies.

How do I troubleshoot common Kubernetes pod errors like CrashLoopBackOff and OOMKilled?

Troubleshoot CrashLoopBackOff and OOMKilled errors by validating your manifests against schema and consistency checks. This identifies misconfigurations in resource limits, probes, and container execution commands to resolve workload failures.

Can I use Helm charts for stateful workloads in Kubernetes?

Helm charts support stateful workloads by generating StatefulSet templates alongside ConfigMaps, Secrets, and Services. This applies standardized chart conventions across stateless and stateful applications with consistent validation.

Do I need prior Kubernetes knowledge to configure HPAs and Ingress resources?

Configuring HPAs and Ingress resources requires familiarity with Kubernetes resource requests, limits, and probes. The generation process applies best practices automatically, but understanding rollout behavior and workload constraints is expected.

What is the best way to validate Kubernetes manifest consistency before deployment?

The best way to validate manifest consistency is running schema checks against your Deployment, StatefulSet, and RBAC YAML files. This verifies resource definitions, probes, and chart conventions before applying configurations to clusters.

Why is my Kubernetes deployment failing despite correct image pulls and configurations?

Deployment failures with correct image pulls often stem from invalid manifest schemas or inconsistent RBAC, ConfigMap, and Secret references. Validate your YAML structures and resource dependencies to detect misconfigurations causing pod failures.