使用Packer构建RancherOS时SSH失败

时间:2016-07-27 07:10:19

标签: packer rancher

我遇到了Packer和RancherOS的问题。我正在尝试使用cloud-config文件构建自定义rancherOS映像。 我正在研究MacOSX。

我有这个build.json文件

{
    "variables": {
        "vm_name" : ""
    },
    "builders": [
        {
            "type": "vmware-iso",
            "iso_url": "rancheros.iso",
            "guest_os_type": "other",
            "iso_checksum_type": "md5",
            "iso_checksum": "467caa8394684ba54e8731aed8480652",
            "output_directory": "output_rancheros",
            "ssh_wait_timeout": "30s",
            "shutdown_command": "sudo shutdown -h now",
            "disk_size": 20000,
            "ssh_username": "rancher",
            "ssh_password": "rancher",
            "ssh_port": 22,
            "ssh_wait_timeout": "90m",
            "vm_name": "{{ user `vm_name` }}",
            "boot_wait": "10s",
            "vmx_data": {
                "memsize": "4096"
            }
        }
    ],
    "provisioners": [
        {
            "type":"file",
            "source": "cloud-config.yml",
            "destination": "/tmp/cloud-config.yml"
        },
        {
            "type": "shell",
            "inline": [
                "sudo ros install -d /dev/sda -f -t generic -c /tmp/cloud-config.yml"
            ]
        }
    ]
}

我有cloud-config.yml只包含我的SSH密钥

#cloud-config
ssh_authorized_keys:
    - ssh-rsa AAAA....d admin@example.com

当我启动构建命令packer build build.json

我得到了

    vmware-iso: + umount /mnt/new_img
    vmware-iso: time="2016-07-27T05:52:35Z" level=fatal msg=EOF
    vmware-iso: Continue with reboot [y/N]:
==> vmware-iso: Stopping virtual machine...
==> vmware-iso: Deleting output directory...
Build 'vmware-iso' errored: Script exited with non-zero exit status: 1

==> Some builds didn't complete successfully and had errors:
--> vmware-iso: Script exited with non-zero exit status: 1

==> Builds finished but no artifacts were created.

如果我理解正确的话。我的脚本正在运行,但是当VM重新启动时,新的SSH密钥无效。

我不知道如何解决这个问题。也许有人会帮助我。

祝你好运

1 个答案:

答案 0 :(得分:5)

我找到了解决方案

只需在-no-reboot命令上添加sudo ros install -d /dev/sda -f -t generic -c /tmp/cloud-config.yml标记即可。

因此在生成过程中不会重启。