wait_for_pod.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - when: l_openshift_hosted_wait_for_pod | default(False) | bool
  3. block:
  4. - name: Ensure OpenShift pod correctly rolls out (best-effort today)
  5. command: |
  6. {{ openshift_client_binary }} rollout status deploymentconfig {{ item.name }} \
  7. --namespace {{ item.namespace | default('default') }} \
  8. --config {{ openshift_master_config_dir }}/admin.kubeconfig
  9. async: 600
  10. poll: 15
  11. with_items: "{{ l_openshift_hosted_wfp_items }}"
  12. failed_when: false
  13. - name: Determine the latest version of the OpenShift pod deployment
  14. command: |
  15. {{ openshift_client_binary }} get deploymentconfig {{ item.name }} \
  16. --namespace {{ item.namespace }} \
  17. --config {{ openshift_master_config_dir }}/admin.kubeconfig \
  18. -o jsonpath='{ .status.latestVersion }'
  19. register: l_openshift_hosted_wfp_latest_version
  20. with_items: "{{ l_openshift_hosted_wfp_items }}"
  21. - name: Poll for OpenShift pod deployment success
  22. command: |
  23. {{ openshift_client_binary }} get replicationcontroller {{ item.0.name }}-{{ item.1.stdout }} \
  24. --namespace {{ item.0.namespace }} \
  25. --config {{ openshift_master_config_dir }}/admin.kubeconfig \
  26. -o jsonpath='{ .metadata.annotations.openshift\.io/deployment\.phase }'
  27. register: openshift_hosted_wfp_rc_phase
  28. until: "'Running' not in openshift_hosted_wfp_rc_phase.stdout"
  29. delay: 15
  30. retries: 40
  31. failed_when: "'Failed' in openshift_hosted_wfp_rc_phase.stdout"
  32. with_together:
  33. - "{{ l_openshift_hosted_wfp_items }}"
  34. - "{{ l_openshift_hosted_wfp_latest_version.results }}"