Sử dụng AWS Fargate triển khai container

Deploy the container using AWS Fargate

Deploy the container using AWS Fargate

  1. Bước đầu, chúng ta sẽ tạo Task definitions để chạy monolith
  • Truy cập ECS
  • Chọn Task definitions
  • Tìm Task definition có tên Monolith-Definition-STACK_NAME

Deploy the container using AWS Fargate

  1. Truy cập vào ECR
  • Sao chép Image URI

Deploy the container using AWS Fargate

  1. Quay lại giao diện ECS
  • Chọn Monolith-Definition-STACK_NAME

Deploy the container using AWS Fargate

  1. Trong giao diện Monolith-Definition-STACK_NAME revision 1. Chúng ta sẽ thực hiện tạo một revision mới.
  • Chọn Create new revision

Deploy the container using AWS Fargate

  1. Tiến hành cấu hình Container
  • Name, nhập tên service mà bạn chọn(Trong bài lab, nhập monolith-service)
  • Dán Image URI đã sao chép vào Image URI

Deploy the container using AWS Fargate

  1. Chọn Create

Deploy the container using AWS Fargate

  1. Hoàn thành tạo new revision

Deploy the container using AWS Fargate

  1. Trong giao diện Monolith-Definition-STACK_NAME revision 2
  • Chọn Deploy
  • Chọn Run stask

Deploy the container using AWS Fargate

  1. Trong giao diện Deploy
  • Environment, chọn Existing cluster, chọn Cluster-STACK_NAME
  • Chọn Launch type
  • Trong Launch type, chọn FARGATE
  • Platform version chọn LATEST

Deploy the container using AWS Fargate

  1. Trong phần Deployment configuration
  • Chọn Task
  • Desired chọn 1

Deploy the container using AWS Fargate

  1. Tiến hành cấu hình Networking
  • VPC, chọn Mysfits-VPC-STACK_NAME
  • Subnets chọn Mysfits-PublicOne-STACK_NAME
  • Chọn Security Group, Chọn Use an existing security group
  • Security group name, chọn default nhưng phải cấu hình inbound cổng 80
  • Auto-assign public IP - “ENABLED”
  • Chọn Deploy

Deploy the container using AWS Fargate

  1. Tạo task thành công

Deploy the container using AWS Fargate

  1. Chọn task vừa tạo và chọn Networking.
  • Mục đích sử dụng Public IP để sử dụng lệnh curl kiểm tra bằng cách thực hiện GET request.
  • Khi sử dụng kiểu khởi tạo Fargate, mỗi task sẽ nhận ENIPublic IPPrivate IP của riêng nó.

Deploy the container using AWS Fargate

  1. Thực hiện truy cập bằng trình duyệt
http://TASK_PUBLIC_IP_ADDRESS/mysfits

Deploy the container using AWS Fargate

  1. Thực hiện lệnh curl trên Cloud9
curl http://TASK_PUBLIC_IP_ADDRESS/mysfits

Deploy the container using AWS Fargate

  1. Chọn task vừa tạo và chọn Logs

Deploy the container using AWS Fargate

  1. Sử dụng AWS CloudWatch để xem Log events
  • Chọn monolith log group (STACK_NAME-MythicalMonolithLogGroup-XXX)

Deploy the container using AWS Fargate

  1. Sau khi chạy lệnh curl thành công ta có thể xóa task
  • Chọn Task
  • Chọn Monolith-Definition-STACK_NAME revision 2.
  • Chọn Stop
  • Chọn Stop selected

Deploy the container using AWS Fargate

  1. Xác thực Stop và chọn Stop

Deploy the container using AWS Fargate

  1. Xóa task thành công.

Deploy the container using AWS Fargate