kubernetes

Manage Kubernetes workloads using kubectl and Helm charts.

Updated Mar 13, 2026
One-click install
npx skills add https://github.com/bacoco/openfang-fork --skill kubernetes-bacoco
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kubernetes
Source: https://github.com/bacoco/openfang-fork/tree/main/crates/openfang-skills/bundled/kubernetes
Command: npx skills add https://github.com/bacoco/openfang-fork --skill kubernetes-bacoco

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill empowers users to effectively manage, deploy, and debug applications on Kubernetes clusters, simplifying complex cloud-native operations.

Core Features & Use Cases

  • Deployment Management: Deploy and manage applications using kubectl and Helm.
  • Troubleshooting: Diagnose and resolve issues with pods, services, and deployments.
  • Configuration: Apply best practices for resource management, networking, and security.
  • Use Case: Troubleshoot a web application that is not responding by checking pod status, describing failing pods, and examining logs.

Quick Start

Use the kubernetes skill to check the status of all pods in the 'production' namespace.

Frequently Asked Questions about kubernetes

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

FAQPage Schema
How do I debug a Kubernetes pod that keeps crashing in production?

To debug a crashing Kubernetes pod, you check the pod status, describe the failing pod to inspect events, and examine the container logs to identify the application or configuration failure.

What are the best practices for setting Kubernetes resource requests and limits?

Kubernetes best practices for resource management involve configuring appropriate CPU and memory requests and limits to ensure stable scheduling and prevent pods from consuming excessive node resources.

How do I deploy a stateful application using Helm charts?

You can deploy stateful applications using Helm charts by applying Kubernetes-native patterns that manage persistent storage and stateful workloads, ensuring stable network identities and ordered scaling.

Why are my Kubernetes services not routing traffic to my deployments?

Kubernetes services may fail to route traffic due to misconfigured network policies or missing health probes, requiring you to inspect service selectors and verify endpoint readiness.

Does this approach work for managing both stateless and stateful workloads?

Yes, this approach supports both stateless and stateful workloads by applying Kubernetes-native patterns, ensuring correct deployment management, and utilizing Helm for consistent application configuration.