Using the New ECS Experience | AWS Tutorial - toge510/aws GitHub Wiki

Terminology

image

What we're building

image

Cluster

  • task, serviceの論理グループ

image

image

Task definition

image

https://docs.aws.amazon.com/ja_jp/AmazonECS/latest/developerguide/create-task-definition.html

以下を定義する。コンテナに関する情報を定義できる。複数のコンテナを定義可能。

  • コンテナイメージ URI
  • ポートマッピング
  • 環境変数
  • タスクサイズ
  • コンテナサイズ
  • ボリュームとコンテナマウントポイント

Service

image

  • Runs multiple tasks of the same kind
  • Scales the number of tasks based on load
  • Monitors and replaces failed tasks
  • Spreads tasks across availability zones
  • Orchestrates rolling updates

image

image

image

image

image

image