summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node_group/tasks/main.yml
blob: 43ecf1b8b0e285b01bbf9106e4d0bc0a3797abe7 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: Build node config maps
  include_tasks: create_config.yml
  vars:
    openshift_node_group_name: "{{ node_group.name }}"
    openshift_node_group_edits: "{{ node_group.edits | default([]) }}"
    openshift_node_group_labels: "{{ node_group.labels | default([]) }}"
  with_items: "{{ openshift_node_groups }}"
  loop_control:
    loop_var: node_group