kubernetes-expert

Manage Kubernetes clusters, deployments, networking, and production operations.

Updated Feb 27, 2026
One-click install
npx skills add https://github.com/JonathanMitchell1234/Stock-Swing-Trading-Bot --skill kubernetes-expert-jonathanmitchell1234
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kubernetes-expert
Source: https://github.com/JonathanMitchell1234/Stock-Swing-Trading-Bot/tree/main/.agents/skills/kubernetes-expert
Command: npx skills add https://github.com/JonathanMitchell1234/Stock-Swing-Trading-Bot --skill kubernetes-expert-jonathanmitchell1234

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides expert-level guidance and automation for managing complex Kubernetes environments, ensuring scalable, secure, and reliable deployments.

Core Features & Use Cases

  • Cluster Management: Design, deploy, and manage Kubernetes clusters.
  • Deployment Strategies: Implement rolling updates, blue-green deployments, and canary releases.
  • Networking & Security: Configure Ingress, Services, Network Policies, and RBAC.
  • Troubleshooting: Diagnose and resolve common Kubernetes issues.
  • Use Case: Deploy a new version of a microservice using a rolling update strategy with defined resource limits and health checks.

Quick Start

Use the kubernetes-expert skill to create a new deployment for a web application named 'my-web-app' using the 'nginx:latest' image.

Frequently Asked Questions about kubernetes-expert

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

FAQPage Schema
How do I deploy a Kubernetes application using a rolling update strategy?

Implement a Kubernetes rolling update by defining a Deployment manifest with updated container images, resource limits, and health checks. This strategy progressively replaces old pods, ensuring zero downtime during microservice releases.

What is the best way to manage Kubernetes networking and Ingress traffic?

Manage Kubernetes networking by configuring Services for internal routing and Ingress controllers for external traffic. Implement Network Policies to enforce traffic isolation and secure pod-to-pod communication across your cloud-native environment.

How do I configure StatefulSets and Persistent Volumes in Kubernetes?

Configure StatefulSets and Persistent Volumes in Kubernetes to manage stateful applications requiring stable storage. This approach ensures data persistence and ordered pod scaling for distributed databases and cloud-native workloads.

Can I use Helm charts for Kubernetes cluster management and GitOps workflows?

You can use Helm charts for Kubernetes cluster management and GitOps workflows by templating declarative configurations. This approach standardizes application packaging, streamlines releases, and maintains cluster state synchronization.

When should I use Kubernetes RBAC and Security Best Practices?

Implement Kubernetes RBAC and security best practices when operating multi-tenant clusters or restricting resource access. Role-Based Access Control enforces least privilege, securing production operations against unauthorized modifications.

How does Horizontal Pod Autoscaling work for Kubernetes deployments?

Horizontal Pod Autoscaling works for Kubernetes deployments by automatically adjusting replica counts based on observed CPU utilization or custom metrics. The HPA ensures your application scales dynamically to handle fluctuating production loads.