ensure_nodes_matching_selector.yml 645 B

1234567891011121314
  1. ---
  2. - name: Retrieve list of schedulable nodes matching selector
  3. oc_obj:
  4. state: list
  5. kind: node
  6. selector: "{{ openshift_master_ensure_nodes_selector }}"
  7. field_selector: "spec.unschedulable!=true"
  8. register: __schedulable_nodes_matching_selector
  9. - name: "Ensure that {{ openshift_master_ensure_nodes_service }} has nodes to run on"
  10. assert:
  11. that: "{{ __schedulable_nodes_matching_selector['results']['results'][0]['items'] | default([]) | length != 0 }}"
  12. msg: |-
  13. No schedulable nodes found matching node selector for {{ openshift_master_ensure_nodes_service }} - '{{ openshift_master_ensure_nodes_selector }}'