- aws上でcontainerを利用したインフラを構築できるフルマネージドコンテナオーケストレーションサービス
- 実行環境は
EC2
とfargate
から選択可能 (EC2にはsshできますがfargate起動タイプはsshできません) - タスク単位でコンテナの管理が可能
- 常時起動が必要なコンテナは「サービス」
- イベントやスケジュールにより処理を開始するコンテナは「タスクスケジュール」
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding:utf-8 | |
from turtle import * | |
def main(): | |
for i in range(2): | |
moji(i) | |
def moji(i): | |
if i == 1: |