agentsclimarketplace

Deployment patterns

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

EOC: open-source operating system for OpenAI Codex workflows with agents, skills, hooks, rules, memory, safety gates, and cross-harness adapters.

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.

What its author says it does

Copied from the file, not written here

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

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. カナリアデプロイメント

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

ベストプラクティス

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

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

Keep looking

Skills are one crate of 328,083. 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.