From 71c0c0c6d3dd2b3360604b118b496107b0f76d37 Mon Sep 17 00:00:00 2001 From: Matt Woodson Date: Fri, 13 Feb 2015 09:50:35 -0500 Subject: added initial tower configs --- playbooks/aws/ansible-tower/config.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 playbooks/aws/ansible-tower/config.yml (limited to 'playbooks/aws/ansible-tower/config.yml') diff --git a/playbooks/aws/ansible-tower/config.yml b/playbooks/aws/ansible-tower/config.yml new file mode 100644 index 000000000..0124156a9 --- /dev/null +++ b/playbooks/aws/ansible-tower/config.yml @@ -0,0 +1,20 @@ +--- +- name: "populate oo_hosts_to_config host group if needed" + hosts: localhost + gather_facts: no + tasks: + - name: Evaluate oo_host_group_exp if it's set + add_host: "name={{ item }} groups=oo_hosts_to_config" + with_items: "{{ oo_host_group_exp | default(['']) }}" + when: oo_host_group_exp is defined + +- name: "Configure instances" + hosts: oo_hosts_to_config + connection: ssh + user: root + vars_files: + - vars.yml + - "vars.{{ oo_env }}.yml" + roles: + - ../../../roles/atomic_base + - ../../../roles/atomic_proxy -- cgit v1.2.3 From e45695622f867734cbfd64797cf6b830a2fff604 Mon Sep 17 00:00:00 2001 From: Matt Woodson Date: Fri, 13 Feb 2015 14:55:01 -0500 Subject: more ansible tower commits --- playbooks/aws/ansible-tower/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'playbooks/aws/ansible-tower/config.yml') diff --git a/playbooks/aws/ansible-tower/config.yml b/playbooks/aws/ansible-tower/config.yml index 0124156a9..069a7b7b1 100644 --- a/playbooks/aws/ansible-tower/config.yml +++ b/playbooks/aws/ansible-tower/config.yml @@ -16,5 +16,6 @@ - vars.yml - "vars.{{ oo_env }}.yml" roles: - - ../../../roles/atomic_base - - ../../../roles/atomic_proxy + - ../../../roles/base_os + - ../../../roles/ipv6_disable + - ../../../roles/ansible_install -- cgit v1.2.3 From 8120628e5a4f913e770851c1a3172126d79695fc Mon Sep 17 00:00:00 2001 From: Matt Woodson Date: Tue, 17 Feb 2015 16:41:48 -0500 Subject: ansible tower install --- playbooks/aws/ansible-tower/config.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'playbooks/aws/ansible-tower/config.yml') diff --git a/playbooks/aws/ansible-tower/config.yml b/playbooks/aws/ansible-tower/config.yml index 069a7b7b1..33c331222 100644 --- a/playbooks/aws/ansible-tower/config.yml +++ b/playbooks/aws/ansible-tower/config.yml @@ -19,3 +19,4 @@ - ../../../roles/base_os - ../../../roles/ipv6_disable - ../../../roles/ansible_install + - ../../../roles/ansible_tower -- cgit v1.2.3 From eaeeb1ec8370c35c7010b9350d42e30e5e00dcc5 Mon Sep 17 00:00:00 2001 From: Matt Woodson Date: Thu, 19 Feb 2015 09:42:28 -0500 Subject: more updates --- playbooks/aws/ansible-tower/config.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'playbooks/aws/ansible-tower/config.yml') diff --git a/playbooks/aws/ansible-tower/config.yml b/playbooks/aws/ansible-tower/config.yml index 33c331222..0318d7a98 100644 --- a/playbooks/aws/ansible-tower/config.yml +++ b/playbooks/aws/ansible-tower/config.yml @@ -17,6 +17,7 @@ - "vars.{{ oo_env }}.yml" roles: - ../../../roles/base_os + - ../../../roles/timezone - ../../../roles/ipv6_disable - ../../../roles/ansible_install - ../../../roles/ansible_tower -- cgit v1.2.3 From 0a6602e6ff0e1340331002e371f5379ef74934a8 Mon Sep 17 00:00:00 2001 From: Matt Woodson Date: Tue, 24 Feb 2015 12:55:41 -0500 Subject: cleaned up ansible tower --- playbooks/aws/ansible-tower/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'playbooks/aws/ansible-tower/config.yml') diff --git a/playbooks/aws/ansible-tower/config.yml b/playbooks/aws/ansible-tower/config.yml index 0318d7a98..423860828 100644 --- a/playbooks/aws/ansible-tower/config.yml +++ b/playbooks/aws/ansible-tower/config.yml @@ -17,7 +17,6 @@ - "vars.{{ oo_env }}.yml" roles: - ../../../roles/base_os - - ../../../roles/timezone - - ../../../roles/ipv6_disable - - ../../../roles/ansible_install + - ../../../roles/os_ipv6_disable + - ../../../roles/ansible - ../../../roles/ansible_tower -- cgit v1.2.3