AWS ECS Restart Policy

风流意气都作罢 提交于 2019-12-11 07:06:18

问题


I've inspected one of the docker containers I have running in my ECS cluster and it has a blank for the restart policy ("{{ .HostConfig.RestartPolicy.Name }}"). I'm unsure what ECS does in the case of a failure but I would like to change the policy to one that restarts the container instance if the cmd running in the instance fails. Is it possible to change the restart policy on docker containers in an ECS cluster?


回答1:


Is it possible to change the restart policy on docker containers in an ECS cluster?

No, ECS does not support restarting existing containers. However, please see below for further details.

I'm unsure what ECS does in the case of a failure

For a single task (started by the RunTask or StartTask APIs), ECS will do nothing in the case of a container stopping except report the stop (exit code and reason, if known) through the DescribeTasks API call and through CloudWatch Events.

I would like to change the policy to one that restarts the container instance if the cmd running in the instance fails.

ECS supports this use-case through the concept of a "service". Services work to continuously make the reality (known state) match the desired state, including the desired number of running tasks you specify. If a task started by a service stops, the service will create a new task to replace it. Services help you manage the number of copies you want running, deployments, binding to and unbinding from load balancers, respond to load balancer health checks, and integrate with auto scaling so your service can scale in or out automatically. You can check out the documentation for more detail.



来源:https://stackoverflow.com/questions/46226882/aws-ecs-restart-policy

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!