ฉันต้องการเรียกใช้งานที่ตอบได้ก็ต่อเมื่อโฮสต์ของ playbook ปัจจุบันไม่ได้อยู่ในกลุ่มใดกลุ่มหนึ่ง ในรหัสกึ่งหลอก:
- name: my command
command: echo stuff
when: "if {{ ansible_hostname }} not in {{ ansible_current_groups }}"
ฉันควรทำอย่างไร?
ฉันต้องการเรียกใช้งานที่ตอบได้ก็ต่อเมื่อโฮสต์ของ playbook ปัจจุบันไม่ได้อยู่ในกลุ่มใดกลุ่มหนึ่ง ในรหัสกึ่งหลอก:
- name: my command
command: echo stuff
when: "if {{ ansible_hostname }} not in {{ ansible_current_groups }}"
ฉันควรทำอย่างไร?
คำตอบ:
นี่เป็นอีกวิธีหนึ่งในการดำเนินการนี้:
- name: my command
command: echo stuff
when: "'groupname' not in group_names"
group_names
เป็นตัวแปรมหัศจรรย์ตามที่บันทึกไว้ที่นี่: https://docs.ansible.com/ansible/latest/user_guide/playbooks_variables.html#accessing-information-about-other-hosts-with-magic-variables :
group_names คือรายการ (อาร์เรย์) ของกลุ่มทั้งหมดที่โฮสต์ปัจจุบันอยู่
when: inventory_hostname not in groups.certain_groups
inventory_hostname in groups['groupname']
เนื่องจากในกรณีที่ไม่มียาแนวเอง Ansible จะแสดงข้อผิดพลาดเช่น "ตรวจสอบให้แน่ใจว่าชื่อตัวแปรของคุณไม่มีอักขระที่ไม่ถูกต้องเช่น '-': อาร์กิวเมนต์ประเภท 'StrictUndefined' ไม่สามารถทำซ้ำได้"
คุณสามารถตั้งค่าตัวแปรควบคุมในไฟล์ vars ที่อยู่ในgroup_vars/
หรือในไฟล์โฮสต์โดยตรงดังนี้:
[vagrant:vars]
test_var=true
[location-1]
192.168.33.10 hostname=apollo
[location-2]
192.168.33.20 hostname=zeus
[vagrant:children]
location-1
location-2
และเรียกใช้งานเช่นนี้:
- name: "test"
command: "echo {{test_var}}"
when: test_var is defined and test_var
This one looks easy to fix. It seems that there is a value started with a quote, and the YAML parser is expecting to see the line ended with the same kind of quote.