Converting a AWS Fargate instance to AWS EC2

0

I have an EC2 Server that I am planing to containerize and use with with AWS Fargate.

My question is if I want to stop Fargate and come back to EC2, is there a possibility to de-containerize a Fargate container to be used with a EC2 server?

ses2
已提問 4 年前檢視次數 1142 次
1 個回答
0

Hi,

There's nothing specific with containers you run on Fargate.

At a high-level, as long as you have a container you can just create a task definition (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/create-task-definition.html), specifying the FARGATE launch type and then either use the run-task API to start the task or create-service to create a service that runs one or more copies of the task. Based on your question, the run-task API is probably what you want to use.

Should you choose to stop using Fargate, you can keep the container and just run it on an EC2 instance instead.

There are a few caveats you should keep in mind:

  • If you treat the containerized server as a stateful container (i.e. you are storing state in the container itself) you will need to change this to store state elsewhere otherwise you will lose the state when you stop the task (the same is true even if you run the container on an EC2 instance unless you take explicit steps to store the state outside of the container).
  • Fargate gives you 10 Gb of Docker layer storage and 4 Gb for volume mounts. If your container image is larger than 10 Gb you won't be able to run it on Fargate (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-storage.html)
profile pictureAWS
Mats
已回答 4 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南