blob: 5adf7d6622556c83fe1393d42ea8e0aeb2750153 [file] [log] [blame]
---
# xos-onboard-hosts/tasks/main.yml
- name: Get the Docker container names for onboarded containers
docker_service:
project_name: "{{ cord_profile | regex_replace('\\W','') }}"
project_src: "{{ cord_profile_dir }}/onboarding-docker-compose/"
recreate: never
register: xos_onboard_out
- name: Add the containers to Ansible groups on a per-container type basis
add_host:
name: "{{ xos_onboard_out.ansible_facts[item].keys() | first }}"
groups: "{{ item }}"
ansible_connection: "docker"
cord_profile: "{{ cord_profile }}"
ansible_ssh_user: "root"
with_items: "{{ xos_onboard_out.ansible_facts.keys() | list }}"