Master Kubernetes deployments for managing containerized applications at scale, including
multi-container services, resource allocation, health checks, and rolling deployment strategies.
1---2name: emmanuelortiz87-gentle-vanguard-kubernetes-deployment3description: Kubernetes Deployment4---56# Kubernetes Deployment78## Table of Contents910- [Overview](#overview)11- [When to Use](#when-to-use)12- [Quick Start](#quick-start)13- [Best Practices](#best-practices)1415## Overview1617Master Kubernetes deployments for managing containerized applications at scale, including18multi-container services, resource allocation, health checks, and rolling deployment strategies.1920## When to Use2122- Container orchestration and management23- Multi-environment deployments (dev, staging, prod)24- Auto-scaling microservices25- Rolling updates and blue-green deployments26- Service discovery and load balancing27- Resource quota and limit management28- Pod networking and security policies2930## Quick Start3132Minimal working example:3334```yaml35# kubernetes-deployment.yaml36apiversión: apps/v137kind: Deployment38metadata:39 name: api-service40 namespace: production41 labels:42 app: api-service43 versión: v144spec:45 replicas: 346 strategy:47 type: RollingUpdate48 rollingUpdate:49 maxSurge: 150 maxUnavailable: 051 selector:52 matchLabels:53 app: api-service54 template:55 metadata:56 labels:57 app: api-service58 versión: v159 annotations:60// ... (expand this skeleton directly in this skill when needed)61```6263## Best Practices6465### DO6667- Use resource requests and limits68- Implement health checks (liveness, readiness)69- Use ConfigMaps for configuration70- Apply security context restrictions71- Use service accounts and RBAC72- Implement pod anti-affinity73- Use namespaces for isolation74- Enable pod security policies7576### DON'T7778- Use latest image tags in production79- Run containers as root80- Set unlimited resource usage81- Skip readiness probes82- Deploy without resource limits83- Mix configurations in container images84- Use default service accounts8586---87> Source: [EmmanuelOrtiz87/gentle-vanguard](https://github.com/EmmanuelOrtiz87/gentle-vanguard) — distributed by [TomeVault](https://tomevault.io).88<!-- tomevault:4.0:skill_md:2026-05-22 -->
Run npx skillmds@latest add tomevault-io/emmanuelortiz87-gentle-vanguard-kubernetes-deployment in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Kubernetes Deployment It is listed under DevOps & Infra on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.