无法使用Troposphere / CloudFormation UserData设置ASG实例主机名

时间:2016-07-14 20:13:16

标签: amazon-web-services amazon-ec2 amazon-cloudformation cloud-init troposphere

以下是我的Troposphere文件的相关部分:

LaunchConfiguration = t.add_resource(LaunchConfiguration(
    "LaunchConfigA",
    ImageId=UBUNTU_IMG,
    SecurityGroups=[Ref(SecurityGroup)],
    InstanceType="m3.medium",
    UserData=Base64(Join('', [
        "#cloud-boothook\n",
        "#!/bin/bash\n",
        "sudo hostname test\n",
        "sudo sh -c 'echo test > /etc/hostname'\n",
        "sudo sh -c 'echo 127.0.0.1 test >> /etc/hosts'\n",
        "sudo touch /var/log/TESTING\n"
    ])),
))

AutoScalingGroupA = t.add_resource(AutoScalingGroup(
    "GroupA",
    AvailabilityZones=GetAZs(Ref(AWS_REGION)),
    LaunchConfigurationName=Ref(LaunchConfiguration),
    MinSize="1",
    DesiredCapacity="2",
    MaxSize="2",
))

当我从此模板创建全新的CloudFormation堆栈时,实例上的主机名看起来像ip-172-XXX-XXX-XXX,默认值。

我确信脚本正在运行,因为我的TESTING文件:

atrose@ip-172-31-32-40:~$ ls -la /var/log/TESTING
-rw-r--r-- 1 root root 0 Jul 14 20:10 /var/log/TESTING

如果我手动运行脚本,则正确设置主机名。像这样:

atrose@ip-172-31-32-40:~$ hostname
ip-172-31-32-40

atrose@ip-172-31-32-40:~$ sudo cat /var/lib/cloud/instance/user-data.txt
#cloud-boothook
#!/bin/bash
sudo hostname test
sudo sh -c 'echo test > /etc/hostname'
sudo sh -c 'echo 127.0.0.1 test >> /etc/hosts'

atrose@ip-172-31-32-40:~$ sudo bash /var/lib/cloud/instance/user-data.txt

atrose@ip-172-31-32-40:~$ hostname
test

如何在首次启动ASG时在实例上设置主机名?

1 个答案:

答案 0 :(得分:-1)

看起来您正在使用Ubuntu AMI,这意味着CloudInit应该内置一个主机名参数,您不需要shell脚本来执行您想要的操作。我猜猜cloudinit本身正在与你的脚本发生冲突。你应该看看这个:

http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/examples/cloud-config.txt#L540

如果您对如何使用它有任何疑问,请与我们联系。谢谢!