Move inline defaults to defaults/main.yml (#12926)

This commit is contained in:
Tushar240503
2026-02-03 14:14:29 +05:30
committed by GitHub
parent 69e042bd9e
commit c5c2cf16a0
3 changed files with 6 additions and 4 deletions

View File

@@ -14,13 +14,13 @@
- name: Populate inventory node taint
set_fact:
inventory_node_taints: "{{ inventory_node_taints + ['%s' | format(item)] }}"
loop: "{{ node_taints | d([]) }}"
inventory_node_taints: "{{ inventory_node_taints + node_taints }}"
when:
- node_taints is defined
- node_taints is not string
- node_taints is not mapping
- node_taints is iterable
- debug: # noqa name[missing]
var: role_node_taints
- debug: # noqa name[missing]