Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

AWS Logo
Menu

Super Mario Game on AWS ECS Fargate: A Comprehensive Guide

Deploy Super Mario on AWS ECS with a VPC, security groups, ALB, ECS cluster, task definitions, and Amazon ECR for Docker images in this comprehensive guide.

Published Aug 1, 2024
Certainly! Here's an improved and more detailed version of your deployment plan for the Super Mario game using AWS ECS:Summary:
Deploy Super Mario on AWS ECS with a VPC, security groups, ALB, ECS cluster, task definitions, and Amazon ECR for Docker images in this comprehensive guide.

Deploying the Super Mario Game using AWS ECS
Steps:
  1. Set Up the VPC:
    • Create a new Virtual Private Cloud (VPC).
    • Configure four subnets: two public subnets for external access and two private subnets for internal services.
    • Set up three route tables: one public route table for the public subnets and two private route tables for the private subnets.
    • Configure an Internet Gateway and attach it to the VPC to enable internet access for the public subnets.
    • Set up a NAT Gateway in the public subnets to allow instances in the private subnets to access the internet securely.
  2. Configure Security Groups:

  1. Set Up the Application Load Balancer (ALB):
    • Create an ALB and configure listeners and target groups to distribute incoming traffic to the ECS tasks running in the private subnets.
Image not found
Create Target Group
Image not found
Target name, Protocol port and select VPC
Image not found
Health Checks Default
Image not found
Load balancer types
Image not found
Load Balance Name
Image not found
Network mapping
Image not found
Security Group ALB
Image not found
Listeners and routing
Image not found
Summary
  1. Set Up Amazon ECR:
    • Create a repository in Amazon Elastic Container Registry (ECR).
    • Build the Docker image for the Super Mario game and push it to the ECR repository.
1
2
3
4
docker pull pengbai/docker-supermario
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin id-account.dkr.ecr.us-east-1.amazonaws.com
docker tag pengbai/docker-supermario:latest id-account.dkr.ecr.us-east-1.amazonaws.com/supermario:latest
docker push 244745843377.dkr.ecr.us-east-1.amazonaws.com/supermario:latest
  1. Create the ECS Cluster:
    • Set up an ECS cluster to manage the containerized application.
Image not found
Cluster ECS
Image not found
Task Definition
Image not found
Task Role
Image not found
Container -1
Image not found
Service
Image not found
Create Cluster Environment
Image not found
Deployment
Image not found
Networking
Image not found
Load Balancing
Image not found
Listener
Image not found
Service Create
Image not found
Service Up
 
Image not found
Game Super Mario

 

Comments

Log in to comment