我已经设置了管道,它与ECS对话,并旋转EC2Spot实例。卡在下面的消息上
PRIMARY task ******:5 - runningCount = 0 , desiredCount = 1, pendingCount = 0这基本上意味着我在等待任务的开始,但是在设置中有些东西是不存在的,而且它永远不会开始。对去哪里找有什么建议吗?
注意:
这是一个测试应用程序,它附带了一个浏览器,所以没有端口需要
谢谢
发布于 2020-04-10 22:25:37
大约8个小时的锤击墙头和这个问题解决了。。
很久以前,这个家伙- https://stackoverflow.com/a/36533601/5332494
我用了很多步骤才弄明白的。
was unable to place a task because no container instance met all of its requirements. Reason: No Container Instances were found in your cluster. For more information, see the Troubleshooting section of the Amazon ECS Developer Guide),这将在上面的链接中将您带到
没有在集群中找到容器实例
带我去了https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_container_instance.html
在
添加了ec2 Spot实例。
注意: Ecs必须与QUAY.io对话才能从他们的私人注册表中提取停靠者的图像。我所要做的就是用默认的格式在AWS秘密管理器中创建机密
{ "username": "your-Quay-Username",
"password": "your-Quay-password"
}(就是这样:)
https://stackoverflow.com/questions/61128109
复制相似问题