phone_home 模块可以在 cloud init 中多次使用吗?

phone_home 模块可以在 cloud init 中多次使用吗?

ubuntu(和其他发行版)中的 cloud-init 具有:(https://cloudinit.readthedocs.io/en/latest/topics/modules.html#phone-home

phone_home:
url: http://example.com/$INSTANCE_ID/
post:
    - pub_key_dsa
    - instance_id
    - fqdn
tries: 10

是否可以调用多个主机 (带有此 URL)?

答案1

这不可能。phone_home旨在每个实例运行一次,并将信息发送到单个 URL。如果您需要将信息发送到多个位置,则需要引入一个可以将 http 调用分散到多个位置的代理。

相关内容