check-prerequisites.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. ---
  2. # Check ansible
  3. - name: Check Ansible version
  4. assert:
  5. that: >
  6. (ansible_version.major == 2 and ansible_version.minor >= 3) or
  7. (ansible_version.major > 2)
  8. msg: "Ansible version must be at least 2.3"
  9. # Check shade
  10. - name: Try to import python module shade
  11. command: python -c "import shade"
  12. ignore_errors: yes
  13. register: shade_result
  14. - name: Check if shade is installed
  15. assert:
  16. that: 'shade_result.rc == 0'
  17. msg: "Python module shade is not installed"
  18. # Check jmespath
  19. - name: Try to import python module shade
  20. command: python -c "import jmespath"
  21. ignore_errors: yes
  22. register: jmespath_result
  23. - name: Check if jmespath is installed
  24. assert:
  25. that: 'jmespath_result.rc == 0'
  26. msg: "Python module jmespath is not installed"
  27. # Check python-dns
  28. - name: Try to import python DNS module
  29. command: python -c "import dns"
  30. ignore_errors: yes
  31. register: pythondns_result
  32. when: openshift_openstack_external_nsupdate_keys is defined
  33. - name: Check if python-dns is installed
  34. assert:
  35. that: 'pythondns_result.rc == 0'
  36. msg: "Python module python-dns is not installed"
  37. when: openshift_openstack_external_nsupdate_keys is defined
  38. # Check jinja2
  39. - name: Try to import jinja2 module
  40. command: python -c "import jinja2"
  41. ignore_errors: yes
  42. register: jinja_result
  43. - name: Check if jinja2 is installed
  44. assert:
  45. that: 'jinja_result.rc == 0'
  46. msg: "Python module jinja2 is not installed"
  47. # Check Glance image
  48. - name: Try to get image facts
  49. os_image_facts:
  50. image: "{{ openshift_openstack_default_image_name }}"
  51. register: image_result
  52. - name: Check that image is available
  53. assert:
  54. that: "image_result.ansible_facts.openstack_image"
  55. msg: "Image {{ openshift_openstack_default_image_name }} is not available"
  56. # Check network name
  57. - name: Try to get network facts
  58. os_networks_facts:
  59. name: "{{ openshift_openstack_external_network_name }}"
  60. register: network_result
  61. when: not openshift_openstack_provider_network_name|default(None)
  62. - name: Check that network is available
  63. assert:
  64. that: "network_result.ansible_facts.openstack_networks"
  65. msg: "Network {{ openshift_openstack_external_network_name }} is not available"
  66. when: not openshift_openstack_provider_network_name|default(None)
  67. # Check keypair
  68. # TODO kpilatov: there is no Ansible module for getting OS keypairs
  69. # (os_keypair is not suitable for this)
  70. # this method does not force python-openstackclient dependency
  71. - name: Try to show keypair
  72. command: >
  73. python -c 'import shade; cloud = shade.openstack_cloud();
  74. exit(cloud.get_keypair("{{ openshift_openstack_keypair_name }}") is None)'
  75. ignore_errors: yes
  76. register: key_result
  77. - name: Check that keypair is available
  78. assert:
  79. that: 'key_result.rc == 0'
  80. msg: "Keypair {{ openshift_openstack_keypair_name }} is not available"
  81. # Check that custom images are available
  82. - include_tasks: custom_image_check.yaml
  83. with_items:
  84. - "{{ openshift_openstack_master_image }}"
  85. - "{{ openshift_openstack_infra_image }}"
  86. - "{{ openshift_openstack_node_image }}"
  87. - "{{ openshift_openstack_lb_image }}"
  88. - "{{ openshift_openstack_etcd_image }}"
  89. # Check that custom flavors are available
  90. - include_tasks: custom_flavor_check.yaml
  91. with_items:
  92. - "{{ openshift_openstack_master_flavor }}"
  93. - "{{ openshift_openstack_infra_flavor }}"
  94. - "{{ openshift_openstack_node_flavor }}"
  95. - "{{ openshift_openstack_lb_flavor }}"
  96. - "{{ openshift_openstack_etcd_flavor }}"