如何使用执行期间生成的变量动态设置 Ansible 剧本中的主机字段?
How to dynamically set the hosts field in Ansible playbooks with a variable generated during execution?
我正在尝试使用 Ansible 提供的变量机制在家里测试一些东西,我将在我的一个工作项目中实现它。所以,现在已经搜索了一段时间,但似乎我不能那么容易地让它工作,即使到处都是其他人的解决方案。
我现在将通过在家演示我的测试目录和文件结构来展示我的项目逻辑。情况是这样的,我有以下剧本:
main.yaml
pl1.yaml
pl2.yaml
./main.yaml 的内容:
- import_playbook: /home/martin/ansible/pl1.yaml
- import_playbook: /home/martin/ansible/pl2.yaml
./pl1.yaml的内容:
- name: Test playbook 1
hosts: localhost
tasks:
- name: Discovering the secret host
shell: cat /home/martin/secret
register: whichHostAd
- debug:
msg: "{{ whichHostAd.stdout }}"
- name: Discovering my hostname
shell: hostname
register: myHostnameAd
- set_fact:
whichHost: "{{ whichHostAd.stdout }}"
myHostname: "{{ myHostnameAd.stdout }}"
cacheable: yes
- name: Test playbook 1 part 2
hosts: "{{ hostvars['localhost']['ansible_facts']['whichHost'] }}"
tasks:
- name: Structuring info
shell: hostname
register: secretHostname
- name: Showing the secret hostname
debug:
msg: "{{ secretHostname.stdout }}"
./pl2.yaml 的内容:
- name: Test Playbook 2
hosts: "{{ whichHost }}"
tasks:
- name: Finishing up
shell: echo "And here am i again.." && hostname
- name: Showing var myHostname
debug:
msg: "{{ myHostname.stdout }}"
整个想法是在比赛之间的 hosts
场上有一个工作变量 在旅途中 。我们该怎么做?
如果我不将 whichHost 变量定义为额外的 arg,剧本根本不会 运行,没关系,我每次都可以这样做, 但 在执行期间 我希望该变量易于管理和更改。在上面的测试用例中,我希望 whichHost 在 main.yaml 中包含的 plays/playbooks 中的任何地方都使用,特别是为了反映 [=] 中第一个任务的输出48=](或 whichHostAd.stdout 变量的输出),因此我可以确定我要在 pl2.yaml.
中定位的主机
根据文档,我应该至少可以使用 hostvars
访问它(就像在我的剧本中一样),但这是我在尝试上述示例时得到的输出:
ERROR! The field 'hosts' has an invalid value, which includes an undefined variable. The error was: 'dict object' has no attribute 'whichHost'
The error appears to have been in '/home/martin/ansible/pl1.yaml': line 22, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: Test playbook 1 part 2
^ here
set_fact
好像也没什么用。任何帮助将不胜感激!
好的,其实我很快就想通了。
所以,我们肯定需要一个事实任务,持有实际的 data/output:
- hosts: localhost
tasks:
- name: Saving variable
set_fact:
whichHost: "{{ whichHostAd.stdout }}"
之后,当你想在其他主机和游戏中调用var时,我们必须提供主机和事实:
"{{ hostvars['localhost']['whichHost'] }}"
就像我上面的测试,但没有 ['ansible_facts']
我正在尝试使用 Ansible 提供的变量机制在家里测试一些东西,我将在我的一个工作项目中实现它。所以,现在已经搜索了一段时间,但似乎我不能那么容易地让它工作,即使到处都是其他人的解决方案。
我现在将通过在家演示我的测试目录和文件结构来展示我的项目逻辑。情况是这样的,我有以下剧本:
main.yaml
pl1.yaml
pl2.yaml
./main.yaml 的内容:
- import_playbook: /home/martin/ansible/pl1.yaml
- import_playbook: /home/martin/ansible/pl2.yaml
./pl1.yaml的内容:
- name: Test playbook 1
hosts: localhost
tasks:
- name: Discovering the secret host
shell: cat /home/martin/secret
register: whichHostAd
- debug:
msg: "{{ whichHostAd.stdout }}"
- name: Discovering my hostname
shell: hostname
register: myHostnameAd
- set_fact:
whichHost: "{{ whichHostAd.stdout }}"
myHostname: "{{ myHostnameAd.stdout }}"
cacheable: yes
- name: Test playbook 1 part 2
hosts: "{{ hostvars['localhost']['ansible_facts']['whichHost'] }}"
tasks:
- name: Structuring info
shell: hostname
register: secretHostname
- name: Showing the secret hostname
debug:
msg: "{{ secretHostname.stdout }}"
./pl2.yaml 的内容:
- name: Test Playbook 2
hosts: "{{ whichHost }}"
tasks:
- name: Finishing up
shell: echo "And here am i again.." && hostname
- name: Showing var myHostname
debug:
msg: "{{ myHostname.stdout }}"
整个想法是在比赛之间的 hosts
场上有一个工作变量 在旅途中 。我们该怎么做?
如果我不将 whichHost 变量定义为额外的 arg,剧本根本不会 运行,没关系,我每次都可以这样做, 但 在执行期间 我希望该变量易于管理和更改。在上面的测试用例中,我希望 whichHost 在 main.yaml 中包含的 plays/playbooks 中的任何地方都使用,特别是为了反映 [=] 中第一个任务的输出48=](或 whichHostAd.stdout 变量的输出),因此我可以确定我要在 pl2.yaml.
中定位的主机根据文档,我应该至少可以使用 hostvars
访问它(就像在我的剧本中一样),但这是我在尝试上述示例时得到的输出:
ERROR! The field 'hosts' has an invalid value, which includes an undefined variable. The error was: 'dict object' has no attribute 'whichHost'
The error appears to have been in '/home/martin/ansible/pl1.yaml': line 22, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: Test playbook 1 part 2
^ here
set_fact
好像也没什么用。任何帮助将不胜感激!
好的,其实我很快就想通了。
所以,我们肯定需要一个事实任务,持有实际的 data/output:
- hosts: localhost
tasks:
- name: Saving variable
set_fact:
whichHost: "{{ whichHostAd.stdout }}"
之后,当你想在其他主机和游戏中调用var时,我们必须提供主机和事实:
"{{ hostvars['localhost']['whichHost'] }}"
就像我上面的测试,但没有 ['ansible_facts']