Case insensitive control node lookup

This commit is contained in:
Michael Robinson 2021-05-29 14:26:50 -06:00
parent 730edbf6cb
commit 3006716f66
No known key found for this signature in database
GPG key ID: 086F6AAE1EFA06E0

View file

@ -86,7 +86,7 @@
block:
- name: Lookup control node from file
ansible.builtin.command:
cmd: "grep '{{ 'P_True' if (k3s_controller_list | length > 1) else 'C_True' }}' /tmp/inventory.txt"
cmd: "grep -i '{{ 'P_True' if (k3s_controller_list | length > 1) else 'C_True' }}' /tmp/inventory.txt"
changed_when: false
check_mode: false
register: k3s_control_delegate_raw