creating-kubernetes-deployments
について
このClaudeスキルは、「create kubernetes deployment」や「generate k8s manifest」といったフレーズをトリガーに、本番環境対応のKubernetesデプロイメントマニフェストとサービスを生成します。ヘルスチェック、オートスケーリング、リソース制限、TLS終端機能付きIngressを含む包括的なYAML設定を作成します。開発者は、アプリケーション用の標準化されたKubernetesデプロイメントファイルを迅速に生成する必要がある場合に、このスキルを利用すべきです。
クイックインストール
Claude Code
推奨/plugin add https://github.com/jeremylongshore/claude-code-plugins-plusgit clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/creating-kubernetes-deploymentsこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Prerequisites
Before using this skill, ensure:
- Kubernetes cluster is accessible and kubectl is configured
- Container image is built and pushed to registry
- Understanding of application resource requirements
- Namespace exists or will be created
- Ingress controller is installed (if using ingress)
- TLS certificates are available (if using HTTPS)
Instructions
- Gather Requirements: Application name, image, replicas, ports, environment
- Create Deployment: Generate YAML with container spec and resource limits
- Add Health Checks: Configure liveness and readiness probes
- Define Service: Create ClusterIP, NodePort, or LoadBalancer service
- Configure Ingress: Set up routing rules and TLS termination
- Add ConfigMaps/Secrets: Externalize configuration and sensitive data
- Enable Auto-scaling: Create HorizontalPodAutoscaler if needed
- Apply Manifests: Use kubectl apply to deploy resources
Output
Deployment Manifest:
# {baseDir}/k8s/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-web-app
namespace: production
spec:
replicas: 3
selector:
matchLabels:
app: my-web-app
template:
metadata:
labels:
app: my-web-app
spec:
containers:
- name: app
image: registry/my-web-app:v1.0.0
ports:
- containerPort: 80
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
livenessProbe:
httpGet:
path: /health
port: 80
initialDelaySeconds: 30
periodSeconds: 10
readinessProbe:
httpGet:
path: /ready
port: 80
initialDelaySeconds: 5
periodSeconds: 5
Service and Ingress:
# {baseDir}/k8s/service.yaml
apiVersion: v1
kind: Service
metadata:
name: my-web-app
namespace: production
spec:
type: ClusterIP
selector:
app: my-web-app
ports:
- port: 80
targetPort: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: my-web-app
namespace: production
spec:
tls:
- hosts:
- app.example.com
secretName: tls-cert
rules:
- host: app.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: my-web-app
port:
number: 80
Error Handling
Image Pull Error
- Error: "ErrImagePull" or "ImagePullBackOff"
- Solution: Verify image name, tag, and registry credentials in imagePullSecrets
CrashLoopBackOff
- Error: Pod repeatedly crashes and restarts
- Solution: Check application logs with
kubectl logsand review container health
Resource Quota Exceeded
- Error: "forbidden: exceeded quota"
- Solution: Reduce resource requests or increase namespace quota
Ingress Not Working
- Error: 404 or 503 on ingress domain
- Solution: Verify ingress controller is running and service endpoints are ready
TLS Certificate Error
- Error: "certificate signed by unknown authority"
- Solution: Create or update TLS secret with valid certificate
Resources
- Kubernetes documentation: https://kubernetes.io/docs/
- kubectl reference: https://kubernetes.io/docs/reference/kubectl/
- Deployment best practices: https://kubernetes.io/docs/concepts/workloads/
- Example manifests in {baseDir}/k8s-examples/
GitHub リポジトリ
関連スキル
algorithmic-art
メタThis Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.
subagent-driven-development
開発This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.
executing-plans
デザインUse the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.
cost-optimization
その他This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.
