production-deployment

Automate production deployment workflows with CI/CD pipelines and Docker containerization.

4|Updated Mar 21, 2026
One-click install
npx skills add https://github.com/Yog-Sotho/claude-skills --skill production-deployment-yog-sotho
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: production-deployment
Source: https://github.com/Yog-Sotho/claude-skills/tree/main/production-deployment
Command: npx skills add https://github.com/Yog-Sotho/claude-skills --skill production-deployment-yog-sotho

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Deployment workflows, CI/CD patterns, Docker containerization, health checks, rollback strategies, and migrations are organized to improve production readiness and reduce release risk.

Core Features & Use Cases

  • CI/CD templates and deployment pattern guidance (Rolling, Blue-Green, Canary) for web applications.
  • Dockerization strategies, non-root user best practices, health-check separation, and environment configuration.
  • Migration coordination and rollback planning using expand-contract pattern and safe database migrations.

Quick Start

Create a production deployment plan for a new web application that includes a CI/CD pipeline, Dockerization, health checks, and rollback steps.

Frequently Asked Questions about production-deployment

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

FAQPage Schema
How do I set up a CI/CD pipeline for automated production deployments using Docker and Kubernetes?

Automated production deployments using Docker and Kubernetes require a CI/CD pipeline that handles building, testing, deploying, and monitoring containerized applications. This workflow integrates health checks, environment configuration, and secret management to ensure production readiness.

What is the best way to implement rollback strategies and database migrations in a production deployment?

Rollback strategies and database migrations in a production deployment are best handled using the expand-contract pattern. This approach coordinates safe database migrations alongside deployment patterns like Rolling, Blue-Green, or Canary to reduce release risk and enable reliable rollbacks.

How do health checks work with containerized applications during a Kubernetes deployment?

Health checks for containerized applications during a Kubernetes deployment work by separating readiness and liveness probes. This health-check separation ensures traffic is only routed to fully operational application instances, improving production reliability and automated deployment success.

Do I need non-root user best practices when dockerizing web applications for production?

Non-root user best practices are required when dockerizing web applications for production to improve security. Dockerization strategies for production deployments also include proper environment configuration and secret management to ensure containers run securely in cloud environments.

What deployment patterns are supported for reducing release risk in CI/CD pipelines?

Deployment patterns supported for reducing release risk in CI/CD pipelines include Rolling, Blue-Green, and Canary deployments. These patterns provide guidance for web applications by controlling how new application versions are rolled out and monitored in production environments.