main.yml 356 B

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