54d67eb1f1
This adds a setting (disabled by default) to have the browbeat installation playbook add the value UseDNS no to the overcloud node sshd config, for the scale lab exspecially this can result in a 4x or greater speed improvement running ansible playbooks. Not quite ludicrous speed, that's going to require pipelining, but it will do Change-Id: I660cfc5a815bd08337f71e2ed9f97252794b09e2
22 lines
361 B
YAML
22 lines
361 B
YAML
---
|
|
#
|
|
# Playbook to install Browbeat (Rally + Shaker) on undercloud
|
|
#
|
|
|
|
- hosts: controller
|
|
remote_user: "{{ host_remote_user }}"
|
|
roles:
|
|
- no-sshd-dns
|
|
- shaker-check
|
|
|
|
- hosts: undercloud
|
|
remote_user: "{{ local_remote_user }}"
|
|
roles:
|
|
- common
|
|
- browbeat
|
|
|
|
- hosts: compute
|
|
remote_user: "{{ host_remote_user }}"
|
|
roles:
|
|
- no-sshd-dns
|