Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 1 | --- |
| 2 | # xos-onboard-hosts/tasks/main.yml |
| 3 | |
| 4 | - name: Get the Docker container names for onboarded containers |
| 5 | docker_service: |
| 6 | project_name: "{{ cord_profile | regex_replace('\\W','') }}" |
Zack Williams | c989f26 | 2017-05-11 13:02:59 -0700 | [diff] [blame] | 7 | project_src: "{{ head_cord_profile_dir }}" |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 8 | recreate: never |
| 9 | register: xos_onboard_out |
| 10 | |
| 11 | - name: Add the containers to Ansible groups on a per-container type basis |
| 12 | add_host: |
| 13 | name: "{{ xos_onboard_out.ansible_facts[item].keys() | first }}" |
| 14 | groups: "{{ item }}" |
| 15 | ansible_connection: "docker" |
| 16 | cord_profile: "{{ cord_profile }}" |
| 17 | ansible_ssh_user: "root" |
| 18 | with_items: "{{ xos_onboard_out.ansible_facts.keys() | list }}" |
| 19 | |