Back to list
pluginagentmarketplace

containers-skill

by pluginagentmarketplace

DevOps automation plugin for Claude AI - CI/CD, deployment, monitoring, and infrastructure management tools for plugin development

2🍴 0📅 Jan 5, 2026

SKILL.md


name: containers-skill description: Docker and Kubernetes - containerization, orchestration, and production deployment. sasmp_version: "1.3.0" bonded_agent: 03-containers-orchestration bond_type: PRIMARY_BOND

parameters:

  • name: platform type: string required: false enum: ["docker", "kubernetes", "both"] default: "both"
  • name: operation type: string required: true enum: ["build", "deploy", "debug", "optimize", "secure"]

retry_config: strategy: exponential_backoff initial_delay_ms: 1000 max_retries: 3

observability: logging: structured metrics: enabled

Containers & Orchestration Skill

Overview

Master Docker and Kubernetes for production deployments.

Parameters

NameTypeRequiredDefaultDescription
platformstringNobothdocker/kubernetes
operationstringYes-Operation type

Core Topics

MANDATORY

  • Docker fundamentals (images, containers, volumes)
  • Dockerfile best practices (multi-stage, security)
  • Docker Compose
  • Kubernetes architecture
  • Deployments, Services, Ingress
  • Health checks

OPTIONAL

  • Helm charts
  • ConfigMaps and Secrets
  • Persistent storage
  • Network policies

ADVANCED

  • Custom operators
  • Service mesh
  • Multi-cluster strategies

Quick Reference

# Docker
docker build -t app:v1 .
docker run -d -p 8080:80 --name app app:v1
docker logs -f container
docker exec -it container sh
docker system prune -af

# Docker Compose
docker compose up -d
docker compose logs -f
docker compose down -v

# Kubernetes
kubectl get pods -A
kubectl describe pod pod-name
kubectl logs -f pod-name
kubectl exec -it pod-name -- sh
kubectl apply -f manifest.yaml
kubectl rollout status deployment/app
kubectl rollout undo deployment/app

# Debugging
kubectl get events --sort-by='.lastTimestamp'
kubectl top pods
kubectl run debug --rm -it --image=busybox -- sh

# Helm
helm install release chart
helm upgrade release chart
helm rollback release 1

Troubleshooting

Common Failures

SymptomRoot CauseSolution
ImagePullBackOffImage not foundVerify name, check creds
CrashLoopBackOffContainer crashingCheck logs, verify CMD
PendingCannot scheduleCheck resources, selectors
OOMKilledOut of memoryIncrease limits

Debug Checklist

  1. Pod status: kubectl get pods -o wide
  2. Events: kubectl describe pod
  3. Logs: kubectl logs pod --previous
  4. Resources: kubectl top pods

Recovery Procedures

CrashLoopBackOff

  1. Get logs: kubectl logs pod --previous
  2. Check events: kubectl describe pod
  3. Test locally: docker run -it image sh

Resources

Score

Total Score

75/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon