add_many_container_providers.yml 964 B

123456789101112131415161718192021222324252627
  1. ---
  2. - hosts: "{{ groups['masters'][0] }}"
  3. tasks:
  4. - name: Include providers/management configuration
  5. include_vars:
  6. file: "{{ openshift_management_many_container_providers_config }}"
  7. - name: Ensure this cluster is a container provider
  8. uri:
  9. url: "https://{{ management_server['hostname'] }}/api/providers"
  10. body_format: json
  11. method: POST
  12. user: "{{ management_server['user'] }}"
  13. password: "{{ management_server['password'] }}"
  14. validate_certs: no
  15. # Docs on formatting the BODY of the POST request:
  16. # http://manageiq.org/docs/reference/latest/api/reference/providers.html#specifying-connection-configurations
  17. body: "{{ item }}"
  18. failed_when: false
  19. with_items: "{{ container_providers }}"
  20. register: results
  21. - name: Ensure failed additions are reported for each container provider
  22. debug:
  23. msg: |
  24. FLOOP {{ item.item.hostname }}
  25. with_items: "{{ results.results }}"