main.yml 354 B

12345678910
  1. ---
  2. - name: Build node config maps
  3. include_tasks: create_config.yml
  4. vars:
  5. l_openshift_node_group_name: "{{ node_group.name }}"
  6. l_openshift_node_group_edits: "{{ node_group.edits | default([]) }}"
  7. l_openshift_node_group_labels: "{{ node_group.labels }}"
  8. with_items: "{{ openshift_node_groups }}"
  9. loop_control:
  10. loop_var: node_group