main.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # This role relies on gcloud invoked via templated bash in order to
  3. # provide a high performance deployment option. The next logical step
  4. # is to transition to a deployment manager template which is then instantiated.
  5. # TODO: use a formal set of role parameters consistent with openshift_aws
  6. #
  7. ---
  8. - name: Templatize DNS script
  9. template: src=dns.j2.sh dest=/tmp/openshift_gcp_provision_dns.sh mode=u+rx
  10. - name: Templatize provision script
  11. template: src=provision.j2.sh dest=/tmp/openshift_gcp_provision.sh mode=u+rx
  12. - name: Templatize de-provision script
  13. template: src=remove.j2.sh dest=/tmp/openshift_gcp_provision_remove.sh mode=u+rx
  14. when:
  15. - state | default('present') == 'absent'
  16. - name: Provision GCP DNS domain
  17. command: /tmp/openshift_gcp_provision_dns.sh
  18. args:
  19. chdir: "{{ files_dir }}"
  20. register: dns_provision
  21. when:
  22. - state | default('present') == 'present'
  23. - name: Ensure that DNS resolves to the hosted zone
  24. assert:
  25. that:
  26. - "lookup('dig', public_hosted_zone, 'qtype=NS', wantlist=True) | sort | join(',') == dns_provision.stdout"
  27. msg: "The DNS domain {{ public_hosted_zone }} defined in 'public_hosted_zone' must have NS records pointing to the Google nameservers: '{{ dns_provision.stdout }}' instead of '{{ lookup('dig', public_hosted_zone, 'qtype=NS') }}'."
  28. when:
  29. - state | default('present') == 'present'
  30. - import_tasks: provision_ssh_keys.yml
  31. - name: Provision GCP resources
  32. command: /tmp/openshift_gcp_provision.sh
  33. args:
  34. chdir: "{{ files_dir }}"
  35. when:
  36. - state | default('present') == 'present'
  37. - name: De-provision GCP resources
  38. command: /tmp/openshift_gcp_provision_remove.sh
  39. when:
  40. - state | default('present') == 'absent'