Federico Ressi 2fd41f4c9c [Vagrant] Update Vagranfile and its playbooks
- add multinode support for devstack nodes
- write clouds.yaml and ssh_config file to devstack-tobiko-deploy source dir
- update tobiko.conf file
- create simple functional test cases to test vagrant configuration
- remove local projects synchronization

Change-Id: I9d2517d5fa6c72b98726af8aa3ba9fa8bcf0918f
2022-07-16 07:31:40 +00:00

20 lines
473 B
YAML

---
- name: get {{ devstack_host_interface }} host IP
shell: >-
ip addr list {{ devstack_host_interface }} | grep 'inet ' | awk '{print $2}'
register: get_devstack_host_ip
- name: parse host IP
set_fact:
devstack_host_ip: >-
{{ get_devstack_host_ip.stdout.split('/', 1)[0] }}
- name: copy local.conf file
become: true
template:
owner: stack
group: stack
src: '{{ devstack_local_conf_file }}'
dest: '{{ devstack_dir }}/local.conf'