summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node_group/tasks/main.yml
blob: c7c15683dcb69ab2a1fef39db12baf6acd58cb86 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: Build node config maps
  include: 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