Kubernetes Operations

Detail Kubernetes cluster deployment, scaling, and troubleshooting best practices.

231|217|Updated Mar 31, 2026
One-click install
npx skills add https://github.com/fazxes/Claude-code --skill kubernetes-operations-fazxes
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Kubernetes Operations
Source: https://github.com/fazxes/Claude-code/tree/main/stubs/downloads/official-plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure
Command: npx skills add https://github.com/fazxes/Claude-code --skill kubernetes-operations-fazxes

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Kubernetes environments are complex and error-prone; this guide consolidates best practices for deploying, scaling, networking, and troubleshooting clusters to reduce downtime and misconfigurations.

Core Features & Use Cases

  • Deployment strategies: rolling updates, blue-green, canary
  • Resource management: deployments, statefulsets, DaemonSets, autoscaling
  • Networking & ingress: service exposure, ingress configuration, load balancing
  • Troubleshooting, security hardening, performance tuning
  • Use cases: establishing new clusters, multi-environment deployments, disaster recovery, and incident response

Quick Start

Spin up a representative sample deployment on a cluster, verify readiness and health checks, and observe basic metrics.

Frequently Asked Questions about Kubernetes Operations

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

FAQPage Schema
What are the best practices for Kubernetes deployments across multiple environments?

Kubernetes deployments across multiple environments require structured manifests, rolling updates, blue-green, and canary strategies. Configuring health checks and RBAC ensures reliable multi-environment deployments while reducing downtime and configuration errors.

How do I troubleshoot a Kubernetes cluster during an incident response?

Troubleshooting a Kubernetes cluster during incident response involves observing metrics, verifying readiness probes, and checking health checks. Applying performance tuning and security hardening practices minimizes cluster downtime and resolves operational issues.

How does Kubernetes autoscaling work for statefulsets and DaemonSets?

Kubernetes autoscaling for statefulsets and DaemonSets works by managing resource allocation based on defined metrics. Proper resource management ensures deployments scale efficiently, maintaining cluster stability and performance under varying workloads.

How do I configure Kubernetes ingress for load balancing and service exposure?

Configuring Kubernetes ingress for load balancing involves defining service exposure rules and ingress configurations. Proper ingress setup routes external traffic to services effectively, ensuring reliable networking and access to deployed applications.

What is needed to establish a new Kubernetes cluster for disaster recovery?

Establishing a new Kubernetes cluster for disaster recovery requires comprehensive deployment manifests, RBAC configurations, and monitoring setups. Security hardening and performance tuning are also essential to ensure ongoing cluster maintenance and operational resilience.

When should I use blue-green deployments instead of rolling updates in Kubernetes?

Use blue-green deployments instead of rolling updates in Kubernetes when you need immediate rollback capabilities and zero downtime. Rolling updates gradually replace instances, while blue-green switches traffic between two identical environments for safer releases.