label_nodes.yml 621 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Update all labels
  3. hosts: oo_masters_to_config
  4. roles:
  5. - openshift_facts
  6. - lib_openshift
  7. tasks:
  8. - import_role:
  9. name: openshift_manage_node
  10. tasks_from: config.yml
  11. vars:
  12. openshift_master_host: '{{ groups.oo_first_master.0 }}'
  13. - name: Update node labels to differentiate from (now-schedulable) masters
  14. hosts: oo_first_master
  15. roles:
  16. - openshift_facts
  17. - lib_openshift
  18. tasks:
  19. - import_role:
  20. name: openshift_manage_node
  21. tasks_from: set_default_node_role.yml
  22. vars:
  23. openshift_master_host: '{{ groups.oo_first_master.0 }}'