blob: 2b60f5a0f67230db124d04f5161c20b0a7166dc4 [file] [log] [blame]
Zack Williamsa2763112017-01-03 11:38:38 -07001---
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','') }}"
Andy Bavier9e7d54a2017-04-17 11:37:02 -04007 project_src: "{{ cord_profile_dir }}"
Zack Williamsa2763112017-01-03 11:38:38 -07008 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