add_many_container_providers.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - hosts: localhost
  3. tasks:
  4. - name: Ensure the container provider configuration is defined
  5. assert:
  6. that: container_providers_config is defined
  7. msg: |
  8. Error: Must provide providers config path. Fix: Add '-e container_providers_config=/path/to/your/config' to the ansible-playbook command
  9. - name: Include providers/management configuration
  10. include_vars:
  11. file: "{{ container_providers_config }}"
  12. - name: Ensure this cluster is a container provider
  13. uri:
  14. url: "https://{{ management_server['hostname'] }}/api/providers"
  15. body_format: json
  16. method: POST
  17. user: "{{ management_server['user'] }}"
  18. password: "{{ management_server['password'] }}"
  19. validate_certs: no
  20. # Docs on formatting the BODY of the POST request:
  21. # http://manageiq.org/docs/reference/latest/api/reference/providers.html#specifying-connection-configurations
  22. body: "{{ item }}"
  23. failed_when: false
  24. with_items: "{{ container_providers }}"
  25. register: results
  26. # Include openshift_management for access to filter_plugins.
  27. - import_role:
  28. name: openshift_management
  29. tasks_from: noop
  30. - name: print each result
  31. debug:
  32. msg: "{{ results.results | oo_filter_container_providers }}"