9c9a31e4f5
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
19 lines
400 B
YAML
19 lines
400 B
YAML
---
|
|
- name: ubuntu-focal controller node
|
|
hosts: ubuntu-focal.controller
|
|
remote_user: stack
|
|
roles:
|
|
- ubuntu-focal/controller
|
|
|
|
- name: ubuntu-focal compute nodes
|
|
hosts: ubuntu-focal.compute
|
|
remote_user: stack
|
|
roles:
|
|
- ubuntu-focal/compute
|
|
|
|
- name: centos-stream8 controller node
|
|
hosts: centos-stream8.controller
|
|
remote_user: stack
|
|
roles:
|
|
- centos-stream8/controller
|