summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/upgrades/pre/verify_nodes_running.yml
blob: 354af3cde2d5ebde959d154802f2a7f0c5e4ec4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- name: Verify node processes
  hosts: oo_nodes_to_config
  roles:
  - openshift_facts
  - openshift_docker_facts
  tasks:
  - name: Ensure Node is running
    service:
      name: "{{ openshift.common.service_type }}-node"
      state: started
      enabled: yes
    when: openshift.common.is_containerized | bool