start.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ---
  2. # TODO: abstract me into a relatively generic task
  3. - name: Verify that the catalog api server is running
  4. command: >
  5. curl -k https://apiserver.kube-service-catalog.svc/healthz
  6. args:
  7. # Disables the following warning:
  8. # Consider using get_url or uri module rather than running curl
  9. warn: no
  10. register: endpoint_health
  11. until: endpoint_health.stdout == 'ok'
  12. retries: "{{ openshift_service_catalog_retries }}"
  13. delay: 10
  14. changed_when: false
  15. # Ignore errors so we can log troubleshooting info on failures.
  16. ignore_errors: yes
  17. # Log the result of `oc status`, `oc get pods`, `oc get events`, and `oc logs deployment/webconsole` for troubleshooting failures.
  18. - when: endpoint_health.stdout != 'ok'
  19. block:
  20. - name: Check status in the kube-service-catalog namespace
  21. command: >
  22. {{ openshift_client_binary }} status --config=/etc/origin/master/admin.kubeconfig -n kube-service-catalog
  23. register: endpoint_status
  24. ignore_errors: true
  25. - debug:
  26. msg: "{{ endpoint_status.stdout_lines }}"
  27. - name: Get pods in the kube-service-catalog namespace
  28. command: >
  29. {{ openshift_client_binary }} get pods --config=/etc/origin/master/admin.kubeconfig -n kube-service-catalog -o wide
  30. register: endpoint_pods
  31. ignore_errors: true
  32. - debug:
  33. msg: "{{ endpoint_pods.stdout_lines }}"
  34. - name: Get events in the kube-service-catalog namespace
  35. command: >
  36. {{ openshift_client_binary }} get events --config=/etc/origin/master/admin.kubeconfig -n kube-service-catalog
  37. register: endpoint_events
  38. ignore_errors: true
  39. - debug:
  40. msg: "{{ endpoint_events.stdout_lines }}"
  41. - name: Get pod logs
  42. command: >
  43. {{ openshift_client_binary }} logs daemonset/apiserver --tail=200 --config=/etc/origin/master/admin.kubeconfig -n kube-service-catalog
  44. register: endpoint_log
  45. ignore_errors: true
  46. - debug:
  47. msg: "{{ endpoint_log.stdout_lines }}"
  48. - when: endpoint_health.stdout != 'ok'
  49. block:
  50. - name: Report errors
  51. fail:
  52. msg: Catalog install failed.