# NOTE(bogdando): Status phase 'Running' doesn't necessarily mean it IS running in fact. # Instead, wait for CR Ready status - name: wait until the Compute control plane services CRs are ready ansible.builtin.shell: | {{ shell_header }} {{ oc_header }} oc wait --for condition=Ready --timeout=60s Nova/nova register: nova_crs_ready_result until: nova_crs_ready_result is success retries: 60 delay: "{{ nova_retry_delay }}"