mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-06 03:01:13 -03:30
Avoid potential loop_var shadowing (#11162)
With CentOS, kubespray currently produces the following warning: [WARNING]: TASK: bootstrap-os : Enable Oracle Linux repo: The loop variable 'item' is already in use. You should set the `loop_var` value in the `loop_control` option for the task to something else to avoid variable collisions and unexpected behavior. This could bites us in nasty ways, so fix it.
This commit is contained in:
@@ -24,10 +24,12 @@
|
|||||||
- vars/
|
- vars/
|
||||||
skip: True
|
skip: True
|
||||||
- name: Include tasks
|
- name: Include tasks
|
||||||
include_tasks: "{{ item }}"
|
include_tasks: "{{ included_tasks_file }}"
|
||||||
with_first_found:
|
with_first_found:
|
||||||
- <<: *search
|
- <<: *search
|
||||||
paths: []
|
paths: []
|
||||||
|
loop_control:
|
||||||
|
loop_var: included_tasks_file
|
||||||
|
|
||||||
|
|
||||||
- name: Create remote_tmp for it is used by another module
|
- name: Create remote_tmp for it is used by another module
|
||||||
|
|||||||
Reference in New Issue
Block a user