agentsclimarketplace

Deployment patterns

Skill mturac/everything-openai-codex/docs/ja-JP/skills/deployment-patterns

Kubernetes、Docker、Vercel、クラウドプロバイダーにおけるデプロイメントパターンと戦略。ブルーグリーン、カナリア、ローリングデプロイメント、ゼロダウンタイムアップグレード。From its SKILL.md

Install
npx -y skills add mturac/everything-openai-codex --skill deployment-patterns

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.5 KB, 423 tokens by cl100k_base, as published. Nobody here has run it

デプロイメント パターン

本番環境でのデプロイメント戦略とパターン。

使用時期

  • Kubernetesへのデプロイメント戦略
  • ゼロダウンタイムアップグレード
  • カナリアまたはブルーグリーンロールアウト
  • 自動スケール構成
  • デプロイメントヘルスチェック設定

デプロイメント戦略

1. ローリングデプロイメント

古いポッドを段階的に新しいものと置き換え。デフォルトで安全。

spec:
  strategy:
    type: RollingUpdate
    rollingUpdate:
      maxSurge: 1
      maxUnavailable: 0

2. ブルーグリーン

2つの完全な環境。即座にスイッチ可能。

3. カナリアデプロイメント

トラフィックのわずかなパーセンテージを新バージョンに。段階的に増加。

ベストプラクティス

  • ヘルスチェックエンドポイント実装
  • ログシステム構成
  • メトリクス収集セットアップ
  • ロールバック計画作成
  • 本番環境との間隔でテスト

詳細については、ドキュメントを参照してください。

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.