在我的剧本中,我想创建一个包含外部命令输出的变量。之后我想在几个模板中使用该变量。
以下是剧本的相关部分:
tasks:
- name: Create variable from command
command: "echo Hello"
register: command_output
- debug: msg="{{command_output.stdout}}"
- name: Copy test service
template: src=../templates/test.service.j2 dest=/tmp/test.service
- name: Enable test service
shell: systemctl enable /tmp/test.service
- name: Start test service
shell: systemctl start test.service
让我们说这是我的模板:
[Unit]
Description=MyApp
After=docker.service
Requires=docker.service
[Service]
TimeoutStartSec=0
ExecStartPre=-/usr/bin/docker kill busybox1
ExecStartPre=-/usr/bin/docker rm busybox1
ExecStartPre=/usr/bin/docker pull busybox
ExecStart=/usr/bin/docker run --name busybox1 busybox /bin/sh -c "while true; do echo {{ string_to_echo }}; sleep 1; done"
[Install]
WantedBy=multi-user.target
(注意{{ string_to_echo }}
)
所以我基本上寻找的是一种将command_output.stdout
(在第一个任务中生成/检索)的内容存储在新变量string_to_echo
中的方法。
之后我想在多个模板中使用该变量。
我想我可以在我的模板中使用{{command_output.stdout}}
,但为了便于阅读,我想摆脱.stdout
。
答案 0 :(得分:62)
您必须store the content as a fact:
- set_fact:
string_to_echo: "{{ command_output.stdout }}"
答案 1 :(得分:43)
没有必要设定事实。
- shell: cat "hello"
register: cat_contents
- shell: echo "I cat hello"
when: cat_contents.stdout == "hello"
答案 2 :(得分:7)
在@udondan的答案之外的轻微修改。我想用set_fact
重用已注册的变量名,以使混乱程度降至最低。
因此,如果我要使用变量psk
进行注册,则在创建set_fact
时将使用相同的变量名称。
- name: generate PSK
shell: openssl rand -base64 48
register: psk
delegate_to: 127.0.0.1
run_once: true
- set_fact:
psk={{ psk.stdout }}
- debug: var=psk
run_once: true
然后在我运行它时
$ ansible-playbook -i inventory setup_ipsec.yml
PLAY [all] *************************************************************************************************************************************************************************
TASK [Gathering Facts] *************************************************************************************************************************************************************
ok: [hostc.mydom.com]
ok: [hostb.mydom.com]
ok: [hosta.mydom.com]
TASK [libreswan : generate PSK] ****************************************************************************************************************************************************
changed: [hosta.mydom.com -> 127.0.0.1]
TASK [libreswan : set_fact] ********************************************************************************************************************************************************
ok: [hosta.mydom.com]
ok: [hostb.mydom.com]
ok: [hostc.mydom.com]
TASK [libreswan : debug] ***********************************************************************************************************************************************************
ok: [hosta.mydom.com] => {
"psk": "6Tx/4CPBa1xmQ9A6yKi7ifONgoYAXfbo50WXPc1kGcird7u/pVso/vQtz+WdBIvo"
}
PLAY RECAP *************************************************************************************************************************************************************************
hosta.mydom.com : ok=4 changed=1 unreachable=0 failed=0
hostb.mydom.com : ok=2 changed=0 unreachable=0 failed=0
hostc.mydom.com : ok=2 changed=0 unreachable=0 failed=0
答案 3 :(得分:4)
我是Ansible的新手,但我会建议下一个解决方案:
playbook.yml
...
vars:
command_output_full:
stdout: will be overriden below
command_output: {{ command_output_full.stdout }}
...
...
...
tasks:
- name: Create variable from command
command: "echo Hello"
register: command_output_full
- debug: msg="{{ command_output }}"
它应该工作(并且对我有用),因为Ansible使用惰性评估。但它似乎在启动之前检查有效性,因此我必须在变量中定义command_output_full.stdout
。
当然,如果vars
部分中有太多这样的变量,它看起来会很难看。
答案 4 :(得分:4)
如果您要存储一个复杂的命令来比较文本结果,例如比较操作系统的版本,也许这可以帮助您:
tasks:
- shell: echo $(cat /etc/issue | awk {'print $7'})
register: echo_content
- shell: echo "It works"
when: echo_content.stdout == "12"
register: out
- debug: var=out.stdout_lines
答案 5 :(得分:1)
如果您想进一步从Playbook结果中提取所需的确切信息,请使用JSON查询语言(例如jmespath),例如:
- name: Sample Playbook
// Fill up your task
no_log: True
register: example_output
- name: Json Query
set_fact:
query_result:
example_output:"{{ example_output | json_query('results[*].name') }}"