2
我第一次使用Terraform和Packer。我正在嘗試爲內置Docker的CentOS創建AWS AMI。從以下的打包程序腳本可以看出,我所做的只是運行docker文檔中所述的多個yum
命令來安裝docker。Terraform無法啓動碼頭服務
{
"builders": [
{
"type": "amazon-ebs",
"profile": "digital",
"source_ami": "ami-061b1560",
"instance_type": "t2.micro",
"ssh_username": "centos",
"ami_name": "centos-docker {{timestamp}}"
}
],
"provisioners": [{
"type": "shell",
"inline": [
"sleep 30",
"sudo yum install -y yum-utils device-mapper-persistent-data lvm2",
"sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo",
"sudo yum makecache fast",
"sudo yum install docker-ce"
]
}]
}
然後我用上面的腳本在我terraform腳本創建的AMI並添加local-exec
置備啓動搬運工服務
provider "aws" {
profile = "digital"
region = "eu-west-1"
}
resource "aws_instance" "chat-server" {
ami = "ami-XXXXXX"
instance_type = "t2.micro"
provisioner "local-exec" {
command = "sudo systemctl start docker"
}
}
當我運行terraform apply
,它徘徊它試圖啓動泊塢窗服務的命令。
aws_instance.chat-server: Creating...
ami: "" => "ami-609f6919"
associate_public_ip_address: "" => "<computed>"
availability_zone: "" => "<computed>"
ebs_block_device.#: "" => "<computed>"
ephemeral_block_device.#: "" => "<computed>"
instance_state: "" => "<computed>"
instance_type: "" => "t2.micro"
ipv6_address_count: "" => "<computed>"
ipv6_addresses.#: "" => "<computed>"
key_name: "" => "<computed>"
network_interface.#: "" => "<computed>"
network_interface_id: "" => "<computed>"
placement_group: "" => "<computed>"
primary_network_interface_id: "" => "<computed>"
private_dns: "" => "<computed>"
private_ip: "" => "<computed>"
public_dns: "" => "<computed>"
public_ip: "" => "<computed>"
root_block_device.#: "" => "<computed>"
security_groups.#: "" => "<computed>"
source_dest_check: "" => "true"
subnet_id: "" => "<computed>"
tenancy: "" => "<computed>"
volume_tags.%: "" => "<computed>"
vpc_security_group_ids.#: "" => "<computed>"
aws_instance.chat-server: Still creating... (10s elapsed)
aws_instance.chat-server: Still creating... (20s elapsed)
aws_instance.chat-server: Still creating... (30s elapsed)
aws_instance.chat-server: Provisioning with 'local-exec'...
aws_instance.chat-server (local-exec): Executing: /bin/sh -c "sudo
systemctl start docker"
Password:aws_instance.chat-server: Still creating... (40s elapsed)
aws_instance.chat-server: Still creating... (50s elapsed)
aws_instance.chat-server: Still creating... (1m0s elapsed)
.
.
.
aws_instance.chat-server: Still creating... (9m0s elapsed)
aws_instance.chat-server: Still creating... (9m10s elapsed)
Interrupt received.
Please wait for Terraform to exit or data loss may occur.
Gracefully shutting down...
stopping apply operation...
Apply complete! Resources: 0 added, 0 changed, 0 destroyed.
我在做什麼錯在這裏?