This update is for providing a dedicated devstack installer for Tacker. It is configurable for supporting several usecases, such as multiple nodes configuration. It's also supports both of default distros in OpenStack, Ubuntu 20.04 (focal) and CentOS Stream 8 currently. You can find usages in the contributor guide `Devstack Installation with Vagrant`. Signed-off-by: Yasufumi Ogawa <yasufum.o@gmail.com> Implements: bp intro-tacker-installer Change-Id: I2f9fcf0811c41d9278df79b5a7e60d608d23cd76
23 lines
401 B
YAML
23 lines
401 B
YAML
---
|
|
- name: update git config
|
|
git_config:
|
|
scope: global
|
|
name: 'url.https://.insteadOf'
|
|
value: 'git://'
|
|
|
|
- name: git clone devstack
|
|
git:
|
|
repo=https://opendev.org/openstack/devstack.git
|
|
dest={{ ansible_env.HOME }}/devstack
|
|
|
|
- name: install os-testr
|
|
become: yes
|
|
pip:
|
|
name: os-testr
|
|
state: latest
|
|
|
|
- name: install tox
|
|
become: yes
|
|
pip:
|
|
name: tox
|