prerequisites.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. ---
  2. - hosts: localhost
  3. tasks:
  4. # Sanity check of inventory variables
  5. - include: net_vars_check.yaml
  6. # Check ansible
  7. - name: Check Ansible version
  8. assert:
  9. that: >
  10. (ansible_version.major == 2 and ansible_version.minor >= 3) or
  11. (ansible_version.major > 2)
  12. msg: "Ansible version must be at least 2.3"
  13. # Check shade
  14. - name: Try to import python module shade
  15. command: python -c "import shade"
  16. ignore_errors: yes
  17. register: shade_result
  18. - name: Check if shade is installed
  19. assert:
  20. that: 'shade_result.rc == 0'
  21. msg: "Python module shade is not installed"
  22. # Check jmespath
  23. - name: Try to import python module shade
  24. command: python -c "import jmespath"
  25. ignore_errors: yes
  26. register: jmespath_result
  27. - name: Check if jmespath is installed
  28. assert:
  29. that: 'jmespath_result.rc == 0'
  30. msg: "Python module jmespath is not installed"
  31. # Check python-dns
  32. - name: Try to import python DNS module
  33. command: python -c "import dns"
  34. ignore_errors: yes
  35. register: pythondns_result
  36. - name: Check if python-dns is installed
  37. assert:
  38. that: 'pythondns_result.rc == 0'
  39. msg: "Python module python-dns is not installed"
  40. # Check jinja2
  41. - name: Try to import jinja2 module
  42. command: python -c "import jinja2"
  43. ignore_errors: yes
  44. register: jinja_result
  45. - name: Check if jinja2 is installed
  46. assert:
  47. that: 'jinja_result.rc == 0'
  48. msg: "Python module jinja2 is not installed"
  49. # Check Glance image
  50. - name: Try to get image facts
  51. os_image_facts:
  52. image: "{{ openstack_default_image_name }}"
  53. register: image_result
  54. - name: Check that image is available
  55. assert:
  56. that: "image_result.ansible_facts.openstack_image"
  57. msg: "Image {{ openstack_default_image_name }} is not available"
  58. # Check network name
  59. - name: Try to get network facts
  60. os_networks_facts:
  61. name: "{{ openstack_external_network_name }}"
  62. register: network_result
  63. when: not openstack_provider_network_name|default(None)
  64. - name: Check that network is available
  65. assert:
  66. that: "network_result.ansible_facts.openstack_networks"
  67. msg: "Network {{ openstack_external_network_name }} is not available"
  68. when: not openstack_provider_network_name|default(None)
  69. # Check keypair
  70. # TODO kpilatov: there is no Ansible module for getting OS keypairs
  71. # (os_keypair is not suitable for this)
  72. # this method does not force python-openstackclient dependency
  73. - name: Try to show keypair
  74. command: >
  75. python -c 'import shade; cloud = shade.openstack_cloud();
  76. exit(cloud.get_keypair("{{ openstack_ssh_public_key }}") is None)'
  77. ignore_errors: yes
  78. register: key_result
  79. - name: Check that keypair is available
  80. assert:
  81. that: 'key_result.rc == 0'
  82. msg: "Keypair {{ openstack_ssh_public_key }} is not available"
  83. # Check that custom images and flavors exist
  84. - hosts: localhost
  85. # Include variables that will be used by heat
  86. vars_files:
  87. - stack_params.yaml
  88. tasks:
  89. # Check that custom images are available
  90. - include: custom_image_check.yaml
  91. with_items:
  92. - "{{ openstack_master_image }}"
  93. - "{{ openstack_infra_image }}"
  94. - "{{ openstack_node_image }}"
  95. - "{{ openstack_lb_image }}"
  96. - "{{ openstack_etcd_image }}"
  97. - "{{ openstack_dns_image }}"
  98. loop_control:
  99. loop_var: image
  100. # Check that custom flavors are available
  101. - include: custom_flavor_check.yaml
  102. with_items:
  103. - "{{ master_flavor }}"
  104. - "{{ infra_flavor }}"
  105. - "{{ node_flavor }}"
  106. - "{{ lb_flavor }}"
  107. - "{{ etcd_flavor }}"
  108. - "{{ dns_flavor }}"
  109. loop_control:
  110. loop_var: flavor