-
Notifications
You must be signed in to change notification settings - Fork 1
/
getreqs.yml
42 lines (39 loc) · 1.07 KB
/
getreqs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
- hosts: localhost
gather_facts: False
sudo: False
tasks:
- name: check out required roles
delegate_to: localhost
connection: local
git:
repo: "{{ openstack_repository_prefix }}ansible-role-{{ item }}.git"
dest: roles/{{ item }}
update: yes
with_items:
- chrony
- docker
- mysql
- rabbitmq-server
- keystone
- glance
- nova-controller
- nova-compute-docker
- neutron-controller
- neutron-network
- cinder-controller
- cinder-volume
- horizon
- name: check out library needed for demo deployment from github.com
git:
repo:
'{{ openstack_repository_prefix }}openstack-ansible-modules.git'
dest: library/openstack-ansible-modules
update: yes
- name: clone docker image repositories to local system
git:
repo: "{{ item.repo }}"
version: "{{ item.version }}"
dest: harness/{{ item.dir }}
update: no
with_items: harness_docker_build_images