我正在尝试启动ECS contianer实例并通过userdata将其注册到群集,并开始运行任务定义。
任务完成后,实例将被终止。
我正在使用AWS文档指南在容器启动时启动任务。 在userdata下面(省略了cluster和task def params)
Content-Type: multipart/mixed; boundary="==BOUNDARY=="
MIME-Version: 1.0
--==BOUNDARY==
Content-Type: text/x-shellscript; charset="us-ascii"
#!/bin/bash
# Specify the cluster that the container instance should register into
cluster=my_cluster
# Write the cluster configuration variable to the ecs.config file
# (add any other configuration variables here also)
echo ECS_CLUSTER=$cluster >> /etc/ecs/ecs.config
# Install the AWS CLI and the jq JSON parser
yum install -y aws-cli jq
--==BOUNDARY==
Content-Type: text/upstart-job; charset="us-ascii"
#upstart-job
description "Amazon EC2 Container Service (start task on instance boot)"
author "Amazon Web Services"
start on started ecs
script
exec 2>>/var/log/ecs/ecs-start-task.log
set -x
until curl -s http://localhost:51678/v1/metadata
do
sleep 1
done
# Grab the container instance ARN and AWS region from instance metadata
instance_arn=$(curl -s http://localhost:51678/v1/metadata | jq -r '. | .ContainerInstanceArn' | awk -F/ '{print $NF}' )
cluster=$(curl -s http://localhost:51678/v1/metadata | jq -r '. | .Cluster' | awk -F/ '{print $NF}' )
region=$(curl -s http://localhost:51678/v1/metadata | jq -r '. | .ContainerInstanceArn' | awk -F: '{print $4}')
# Specify the task definition to run at launch
task_definition=my_task_def
# Run the AWS CLI start-task command to start your task on this container instance
aws ecs start-task --cluster $cluster --task-definition $task_definition --container-instances $instance_arn --started-by $instance_arn --region $region
end script
--==BOUNDARY==--
创建实例时,它会启动到默认群集,而不是我在userdata中指定的群集,并且不会启动任务。
我已经解构了上面的脚本来解决失败的问题,但我没有运气。
任何帮助都将不胜感激。
答案 0 :(得分:0)
使用用户数据配置Amazon ECS容器实例,例如 来自Amazon ECS容器代理的代理环境变量 组态。 Amazon EC2用户数据脚本只执行一个 时间,首次启动实例时。
默认情况下,容器实例将启动为默认值 簇。要启动到非默认群集,请选择“高级” 详细清单。然后,将以下脚本粘贴到用户数据中 字段,将your_cluster_name替换为您的群集名称。
因此,为了能够将EC2实例添加到ECS群集,您应该将此变量更改为群集名称:
# Specify the cluster that the container instance should register into
cluster=your_cluster_name
将your_cluster_name更改为群集名称。