kubernetes-skill

Automate Kubernetes cluster administration with kubectl for resource management and debugging.

12|1|Updated Nov 23, 2025
One-click install
npx skills add https://github.com/jiunbae/agent-skills --skill kubernetes-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kubernetes-skill
Source: https://github.com/jiunbae/agent-skills/tree/main/integrations/kubernetes-skill
Command: npx skills add https://github.com/jiunbae/agent-skills --skill kubernetes-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Kubernetes 클러스터 관리와 운영 자동화를 위한 포괄적 스킬로, kubectl 기반 리소스 관리와 디버깅을 지원합니다.

Core Features & Use Cases

  • 클러스터 연결/상태 파악, 리소스 관리(Pods, Deployments, Services, ConfigMaps/Secrets, Namespaces)
  • 디버깅 및 트러블슈팅: 로그, 이벤트, 포트 포워딩, 디버그 컨테이너
  • 배포 작업: Apply, Rollout, Scale, Delete
  • 포맷/도구 연동: YAML 템플릿, 컨피그 관리

Quick Start

kubectl 명령을 통해 기본 정보 조회 및 리소스 관리 작업의 예시를 제공합니다.

Frequently Asked Questions about kubernetes-skill

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

FAQPage Schema
How do I manage pods and deployments in a Kubernetes cluster?

Kubernetes cluster management uses kubectl to deploy, scale, and monitor pods and deployments across namespaces. You can apply manifests, check pod status, view logs, and perform rollout operations to manage containerized workloads end to end.

Can I automate kubectl operations across multiple namespaces?

Yes. Kubectl automation supports namespace and context awareness, allowing you to manage resources—pods, deployments, services, configmaps, and secrets—across multiple namespaces in a single workflow with namespace-scoped operations.

How do I troubleshoot issues in Kubernetes clusters?

Kubernetes troubleshooting uses kubectl to inspect logs, events, and pod state; port-forward to services; and attach debug containers. These diagnostic tools help identify deployment failures, connectivity issues, and runtime problems.

What prerequisites do I need for Kubernetes cluster management?

Kubernetes cluster administration requires kubectl availability, a valid kubeconfig file for authentication, and access to the target cluster. These prerequisites enable context switching, namespace operations, and resource management.

How do I apply and scale deployments in Kubernetes?

Deployment operations include applying YAML manifests with kubectl apply, scaling replicas up or down, and managing rollouts. These procedural tasks automate application deployment and capacity adjustments across the cluster.

Does kubectl support configuration management with ConfigMaps and Secrets?

Yes. Kubectl manages ConfigMaps and Secrets as standard Kubernetes resources, enabling you to store and inject environment variables, configuration data, and sensitive credentials into pods during deployment.