
- 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
39 lines
977 B
YAML
39 lines
977 B
YAML
---
|
|
|
|
- delegate_to: localhost
|
|
block:
|
|
|
|
- name: ensure '{{ tobiko_ssh_config_path | dirname }}' exists
|
|
file:
|
|
path: '{{ tobiko_ssh_config_path | dirname }}'
|
|
state: directory
|
|
|
|
- name: get ssh_config content'
|
|
shell:
|
|
cmd: vagrant ssh-config
|
|
chdir: '{{ devstack_plugin_tobiko_src_dir }}'
|
|
register: get_ssh_config
|
|
changed_when: false
|
|
|
|
- debug: var=get_ssh_config
|
|
|
|
- name: write ssh_config to file '{{ tobiko_ssh_config_path }}'
|
|
copy:
|
|
content: |
|
|
{{ get_ssh_config.stdout }}
|
|
dest: '{{ tobiko_ssh_config_path }}'
|
|
|
|
- name: write ssh_config file path to {{ tobiko_config_path }}
|
|
ini_file:
|
|
path: '{{ tobiko_config_path }}'
|
|
section: ssh
|
|
option: config_files
|
|
value: '{{ tobiko_ssh_config_path }}'
|
|
|
|
- name: write SSH proxy jump host to {{ tobiko_config_path }}
|
|
ini_file:
|
|
path: '{{ tobiko_config_path }}'
|
|
section: ssh
|
|
option: proxy_jump
|
|
value: devstack-primary
|