Updated from OpenStack Ansible Tests

Change-Id: I1db75e2e7cb4b9656cdde2c1f4b8f8c472291081
This commit is contained in:
OpenStack Proposal Bot 2019-06-27 10:23:46 +00:00
parent 4d906711ec
commit 2e07702b34
2 changed files with 11 additions and 8 deletions

8
Vagrantfile vendored
View File

@ -41,14 +41,14 @@ Vagrant.configure(2) do |config|
bionic.vm.box = "ubuntu/bionic64"
end
config.vm.define "opensuse423" do |leap423|
leap423.vm.box = "opensuse/openSUSE-42.3-x86_64"
end
config.vm.define "opensuse150" do |leap150|
leap150.vm.box = "opensuse/openSUSE-15.0-x86_64"
end
config.vm.define "opensuse151" do |leap151|
leap151.vm.box = "opensuse/openSUSE-15.1-x86_64"
end
config.vm.define "centos7" do |centos7|
centos7.vm.box = "centos/7"
end

View File

@ -67,7 +67,8 @@
name: "{{ _oslomsg_notify_vhost }}"
state: "present"
when:
- _oslomsg_notify_vhost != _oslomsg_rpc_vhost
- (_oslomsg_rpc_vhost is undefined) or
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
- name: Apply Notify RabbitMQ vhost policies
rabbitmq_policy:
@ -78,21 +79,23 @@
vhost: "{{ _oslomsg_notify_vhost }}"
loop: "{{ _oslomsg_notify_policies | default([]) + oslomsg_notify_policies }}"
when:
- _oslomsg_notify_vhost != _oslomsg_rpc_vhost
- (_oslomsg_rpc_vhost is undefined) or
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
- name: Add Notify RabbitMQ user
rabbitmq_user:
user: "{{ _oslomsg_notify_userid }}"
password: "{{ _oslomsg_notify_password }}"
update_password: always
vhost: "{{ _oslomsg_notify_vhost }}"
configure_priv: ".*"
read_priv: ".*"
write_priv: ".*"
state: "present"
force: true
no_log: true
when:
- _oslomsg_notify_userid != _oslomsg_rpc_userid
- (_oslomsg_rpc_userid is undefined) or
(_oslomsg_notify_userid != _oslomsg_rpc_userid)
- name: Setup RPC MQ Service (Qdrouterd)
delegate_to: "{{ _oslomsg_rpc_setup_host }}"