我已经创建了一个包含多个基于 KVM 的 Linux 主机的环境。我正在使用 virt-manager 创建不同的虚拟机,并使用 Linux 网桥在不同主机中的虚拟机之间创建连接。
现在,我想要一个自动配置服务器,以便我的虚拟机可以根据每个虚拟机拥有的唯一 ID 自动配置它们的名称、IP 地址、运行一些脚本等。是否可以在非 openstack 环境中复制一种 cloud-init 设置?
我尝试通过以下方式使用 cloud-init 数据源 NoCloud。首先,我在VM中安装了cloud-init并配置了cloud.cfg:
datasource:
NoCloud
datasource_list: [ NoCloud ]
disable_ec2_metadata: True
然后,我创建了一个用户数据文件和元数据文件,内容如下:
用户数据:
#cloud-config
hostname: prueba
password: passw0rd
chpasswd: { expire: False }
ssh_pwauth: True
元数据:
instance-id: iid-local01
local-hostname: prueba
然后,我生成了一个iso文件:
genisoimage -output seed.iso -volid cidata -joliet -rock user-data meta-data
最后,我已将磁盘附加到 VM 并启动它。这是 XML 的相关部分:
<disk type='file' device='disk'>
<driver name='qemu' type='raw'/>
<source file='/opt/images/seed.iso'/>
<backingStore/>
<target dev='vdb' bus='virtio'/>
<alias name='virtio-disk1'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
</disk>
当虚拟机启动时,它会说:
2015-05-12 12:12:40,394 - util.py[WARNING]: Getting data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloudNet'> failed
* Stopping Read required files in advance (for other mountpoints) [ OK ]
* Stopping Read required files in advance (for other mountpoints) [ OK ]
* Stopping Read required files in advance (for other mountpoints) [ OK ]
2015-05-12 12:12:48,808 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [3/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by <class 'socket.error'>: [Errno 113] No route to host)]
有关如何使其工作的任何建议?