|
56 | 56 | vars: |
57 | 57 | install_plan_name: "{{ __sap_hypervisor_node_preconfigure_register_cnv_subscription_install_plan_name.stdout }}" |
58 | 58 | block: |
59 | | - - name: Get Install Plan details |
| 59 | + - name: Get Install Plan details # noqa: ignore-errors |
60 | 60 | kubernetes.core.k8s_info: |
61 | 61 | api_version: operators.coreos.com/v1alpha1 |
62 | 62 | kind: InstallPlan |
|
73 | 73 | msg: "Install Plan is not Complete after the specified wait period." |
74 | 74 | when: __sap_hypervisor_node_preconfigure_register_wait_for_installplan.resources[0].status.phase != "Complete" |
75 | 75 |
|
76 | | -- name: Wait and check for pod with label name hyperconverged-cluster-webhook under "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" namespace |
| 76 | +- name: Wait and check for pod with label name hyperconverged-cluster-webhook under the namespace "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" |
77 | 77 | kubernetes.core.k8s_info: |
78 | 78 | kind: Pod |
79 | 79 | namespace: "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" |
|
84 | 84 | delay: 60 |
85 | 85 | until: hco_webhook_pod.resources | selectattr('status.phase', 'equalto', 'Running') | list | length == hco_webhook_pod.resources | length |
86 | 86 |
|
87 | | -- name: Wait and check for pod with name hco-webhook under "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" namespace |
| 87 | +- name: Wait and check for pod with name hco-webhook under the namespace "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" |
88 | 88 | kubernetes.core.k8s_info: |
89 | 89 | kind: Pod |
90 | 90 | namespace: "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" |
|
95 | 95 | delay: 60 |
96 | 96 | until: __sap_hypervisor_node_preconfigure_register_hco_webhook_pod.resources | selectattr('status.phase', 'equalto', 'Running') | list | length == __sap_hypervisor_node_preconfigure_register_hco_webhook_pod.resources | length |
97 | 97 |
|
98 | | -- name: Wait and check if hco-webhook-service exists in "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" namespace |
| 98 | +- name: Wait and check if hco-webhook-service exists in the namespace "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" |
99 | 99 | kubernetes.core.k8s_info: |
100 | 100 | kind: Service |
101 | 101 | namespace: "{{ sap_hypervisor_node_preconfigure_ocpv_namespace }}" |
|
0 commit comments