所以,这里是设置。
我通过额外的变量将 FQDN 列表传递给剧本,但控制机器的密钥与其相应的 IP 地址一起复制。此外,它们在清单中也没有特定的组。
这个剧本的主机是一个服务器,它可能是也可能不是我通过额外变量传递的这个列表的一部分。因此,剧本根本没有这些节点的事实。
所以,我的问题是如何即时获取各个主机的 IP 地址,以便我可以遍历它们以检查我之前通过另一个剧本/角色使用它们的 FQDN 设置的某些属性。(注意:我严格需要 FQDN 来设置这些属性)
我使用了 delegate_to 模块,并传递了 FQDN,它可以工作,但它会询问我是否要继续连接(是/否)并等待用户输入以进行初始运行(如果给定是,它会按预期工作)。他们还有其他更简单、更清洁的方法来解决这个问题吗?
(注意:请记住,我不能修改库存的内容,例如放置别名等)
这是代码片段:
- name: Checks
become_user: hdfs
shell: hdfs dfsadmin –report
delegate_to: "{{ item.host_name }}"
with_items:
- "{{rackDetails}}"
这是调用上述角色的主 yml 文件的片段:
- name: Checks for the property
hosts: servernode
roles:
- Checks
库存代码片段如下所示:
[servernode]
10.0.2.15 ansible_ssh_user=grant ansible_ssh_pass=grant
[all]
10.0.2.15 ansible_ssh_user=grant ansible_ssh_pass=grant
10.0.2.16 ansible_ssh_user=grant ansible_ssh_pass=grant
10.0.2.17 ansible_ssh_user=grant ansible_ssh_pass=grant
10.0.2.18 ansible_ssh_user=grant ansible_ssh_pass=授予
10.0.2.19 ansible_ssh_user=授予 ansible_ssh_pass=授予
最后,这就是我通过额外变量传递的内容:
{"rackDetails":[{"host_name":"prod_node1.paas.com","rack_name":"/rack1"},{"host_name":"prod_node2.paas.com","rack_name":"/rack2"},{"host_name":"prod_node3.paas.com","rack_name":"/rack3"}]}