k8s-deployment

Deploy, update, and rollback Kubernetes applications from deployment.yaml.

Updated Jan 4, 2026
One-click install
npx skills add https://github.com/leonj1/external-claude-skills --skill k8s-deployment
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: k8s-deployment
Source: https://github.com/leonj1/external-claude-skills/tree/main/skills/infrastructure/k8s-deployment
Command: npx skills add https://github.com/leonj1/external-claude-skills --skill k8s-deployment

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps manage Kubernetes deployments.

Core Features & Use Cases

  • Deploy applications to Kubernetes.
  • Update existing deployments.
  • Rollback deployments.

Quick Start

Use the k8s-deployment skill to deploy the application defined in 'deployment.yaml'.

Frequently Asked Questions about k8s-deployment

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

FAQPage Schema
How do I deploy an application to a Kubernetes cluster?

To deploy an application to Kubernetes, you apply the configuration defined in your deployment.yaml file. This enables declarative infrastructure management and automates the initial application rollout within your cluster.

What is the best way to update existing Kubernetes deployments?

Updating existing Kubernetes deployments involves applying iterative changes to your configuration. This manages the application lifecycle automatically, ensuring seamless transitions during updates without requiring manual intervention.

How do I rollback a failed Kubernetes deployment?

Rolling back a failed Kubernetes deployment reverts the application to a previous stable state. This disaster recovery mechanism ensures application availability by undoing problematic iterative updates automatically.

Do I need a deployment.yaml to manage application lifecycle in Kubernetes?

Yes, a deployment.yaml is required to define the declarative infrastructure configuration. It provides the necessary specifications for initial rollout, iterative updates, and rollback operations within the cluster.

Can I use declarative infrastructure management for disaster recovery in k8s?

Yes, declarative infrastructure management supports disaster recovery in k8s through automated rollbacks. By defining the desired state, the system can revert applications to a stable configuration during failures.