Remove hostname-related playbooks
Change-Id: Ia2a617e337de987fb371c8507013c78c2ca80cd3
This commit is contained in:
@@ -74,17 +74,12 @@
|
|||||||
name: watcher-tempest-multinode
|
name: watcher-tempest-multinode
|
||||||
parent: watcher-tempest-functional
|
parent: watcher-tempest-functional
|
||||||
nodeset: openstack-two-node
|
nodeset: openstack-two-node
|
||||||
pre-run: playbooks/pre.yaml
|
|
||||||
run: playbooks/orchestrate-tempest.yaml
|
|
||||||
roles:
|
roles:
|
||||||
- zuul: openstack/tempest
|
- zuul: openstack/tempest
|
||||||
group-vars:
|
group-vars:
|
||||||
subnode:
|
subnode:
|
||||||
devstack_local_conf:
|
devstack_local_conf:
|
||||||
post-config:
|
post-config:
|
||||||
$NOVA_CONF:
|
|
||||||
libvirt:
|
|
||||||
live_migration_uri: qemu+ssh://root@%s/system
|
|
||||||
$WATCHER_CONF:
|
$WATCHER_CONF:
|
||||||
watcher_cluster_data_model_collectors.compute:
|
watcher_cluster_data_model_collectors.compute:
|
||||||
period: 120
|
period: 120
|
||||||
@@ -110,9 +105,6 @@
|
|||||||
vars:
|
vars:
|
||||||
devstack_local_conf:
|
devstack_local_conf:
|
||||||
post-config:
|
post-config:
|
||||||
$NOVA_CONF:
|
|
||||||
libvirt:
|
|
||||||
live_migration_uri: qemu+ssh://root@%s/system
|
|
||||||
$WATCHER_CONF:
|
$WATCHER_CONF:
|
||||||
watcher_cluster_data_model_collectors.compute:
|
watcher_cluster_data_model_collectors.compute:
|
||||||
period: 120
|
period: 120
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
- hosts: all
|
|
||||||
# This is the default strategy, however since orchestrate-devstack requires
|
|
||||||
# "linear", it is safer to enforce it in case this is running in an
|
|
||||||
# environment configured with a different default strategy.
|
|
||||||
strategy: linear
|
|
||||||
roles:
|
|
||||||
- orchestrate-devstack
|
|
||||||
|
|
||||||
- hosts: tempest
|
|
||||||
roles:
|
|
||||||
- setup-tempest-run-dir
|
|
||||||
- setup-tempest-data-dir
|
|
||||||
- acl-devstack-files
|
|
||||||
- run-tempest
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
- hosts: all
|
|
||||||
roles:
|
|
||||||
- add-hostnames-to-hosts
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
- name: Set up the list of hostnames and addresses
|
|
||||||
set_fact:
|
|
||||||
hostname_addresses: >
|
|
||||||
{% set hosts = {} -%}
|
|
||||||
{% for host, vars in hostvars.items() -%}
|
|
||||||
{% set _ = hosts.update({vars['ansible_hostname']: vars['nodepool']['private_ipv4']}) -%}
|
|
||||||
{% endfor -%}
|
|
||||||
{{- hosts -}}
|
|
||||||
- name: Add inventory hostnames to the hosts file
|
|
||||||
become: yes
|
|
||||||
lineinfile:
|
|
||||||
dest: /etc/hosts
|
|
||||||
state: present
|
|
||||||
insertafter: EOF
|
|
||||||
line: "{{ item.value }} {{ item.key }}"
|
|
||||||
with_dict: "{{ hostname_addresses }}"
|
|
||||||
Reference in New Issue
Block a user