Using the New ECS Experience | AWS Tutorial - toge510/aws GitHub Wiki
Terminology
What we're building
Cluster
- task, serviceの論理グループ
Task definition
https://docs.aws.amazon.com/ja_jp/AmazonECS/latest/developerguide/create-task-definition.html
以下を定義する。コンテナに関する情報を定義できる。複数のコンテナを定義可能。
- コンテナイメージ URI
- ポートマッピング
- 環境変数
- タスクサイズ
- コンテナサイズ
- ボリュームとコンテナマウントポイント
Service
- 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