Updated from OpenStack Ansible Tests
Change-Id: I4d885cd1f643c303efff2e7ac49cc06f10a497c7
This commit is contained in:
parent
ad0f2b9331
commit
c7ddb916cd
@ -28,7 +28,7 @@
|
|||||||
- common-mariadb
|
- common-mariadb
|
||||||
block:
|
block:
|
||||||
- name: Create database for service
|
- name: Create database for service
|
||||||
mysql_db:
|
community.mysql.mysql_db:
|
||||||
name: "{{ item.name }}"
|
name: "{{ item.name }}"
|
||||||
login_host: "{{ _oslodb_setup_endpoint | default(omit) }}"
|
login_host: "{{ _oslodb_setup_endpoint | default(omit) }}"
|
||||||
login_port: "{{ _oslodb_setup_port | default(omit) }}"
|
login_port: "{{ _oslodb_setup_port | default(omit) }}"
|
||||||
@ -36,7 +36,7 @@
|
|||||||
no_log: true
|
no_log: true
|
||||||
|
|
||||||
- name: Grant access to the database for the service
|
- name: Grant access to the database for the service
|
||||||
mysql_user:
|
community.mysql.mysql_user:
|
||||||
name: "{{ item.1.username }}"
|
name: "{{ item.1.username }}"
|
||||||
password: "{{ item.1.password }}"
|
password: "{{ item.1.password }}"
|
||||||
host: "{{ item.1.host | default('%') }}"
|
host: "{{ item.1.host | default('%') }}"
|
||||||
|
@ -29,12 +29,12 @@
|
|||||||
- common-rabbitmq
|
- common-rabbitmq
|
||||||
block:
|
block:
|
||||||
- name: Add RPC RabbitMQ vhost
|
- name: Add RPC RabbitMQ vhost
|
||||||
rabbitmq_vhost:
|
community.rabbitmq.rabbitmq_vhost:
|
||||||
name: "{{ _oslomsg_rpc_vhost }}"
|
name: "{{ _oslomsg_rpc_vhost }}"
|
||||||
state: "present"
|
state: "present"
|
||||||
|
|
||||||
- name: Apply RPC RabbitMQ vhost policies
|
- name: Apply RPC RabbitMQ vhost policies
|
||||||
rabbitmq_policy:
|
community.rabbitmq.rabbitmq_policy:
|
||||||
name: "{{ item.name }}"
|
name: "{{ item.name }}"
|
||||||
pattern: "{{ item.pattern }}"
|
pattern: "{{ item.pattern }}"
|
||||||
priority: "{{ item.priority | default(0) }}"
|
priority: "{{ item.priority | default(0) }}"
|
||||||
@ -43,7 +43,7 @@
|
|||||||
loop: "{{ _oslomsg_rpc_policies | default([]) + oslomsg_rpc_policies }}"
|
loop: "{{ _oslomsg_rpc_policies | default([]) + oslomsg_rpc_policies }}"
|
||||||
|
|
||||||
- name: Add RPC RabbitMQ user
|
- name: Add RPC RabbitMQ user
|
||||||
rabbitmq_user:
|
community.rabbitmq.rabbitmq_user:
|
||||||
user: "{{ _oslomsg_rpc_userid }}"
|
user: "{{ _oslomsg_rpc_userid }}"
|
||||||
password: "{{ _oslomsg_rpc_password }}"
|
password: "{{ _oslomsg_rpc_password }}"
|
||||||
update_password: always
|
update_password: always
|
||||||
@ -63,7 +63,7 @@
|
|||||||
- common-rabbitmq
|
- common-rabbitmq
|
||||||
block:
|
block:
|
||||||
- name: Add Notify RabbitMQ vhost
|
- name: Add Notify RabbitMQ vhost
|
||||||
rabbitmq_vhost:
|
community.rabbitmq.rabbitmq_vhost:
|
||||||
name: "{{ _oslomsg_notify_vhost }}"
|
name: "{{ _oslomsg_notify_vhost }}"
|
||||||
state: "present"
|
state: "present"
|
||||||
when:
|
when:
|
||||||
@ -71,7 +71,7 @@
|
|||||||
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
|
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
|
||||||
|
|
||||||
- name: Apply Notify RabbitMQ vhost policies
|
- name: Apply Notify RabbitMQ vhost policies
|
||||||
rabbitmq_policy:
|
community.rabbitmq.rabbitmq_policy:
|
||||||
name: "{{ item.name }}"
|
name: "{{ item.name }}"
|
||||||
pattern: "{{ item.pattern }}"
|
pattern: "{{ item.pattern }}"
|
||||||
priority: "{{ item.priority | default(0) }}"
|
priority: "{{ item.priority | default(0) }}"
|
||||||
@ -83,7 +83,7 @@
|
|||||||
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
|
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
|
||||||
|
|
||||||
- name: Add Notify RabbitMQ user
|
- name: Add Notify RabbitMQ user
|
||||||
rabbitmq_user:
|
community.rabbitmq.rabbitmq_user:
|
||||||
user: "{{ _oslomsg_notify_userid }}"
|
user: "{{ _oslomsg_notify_userid }}"
|
||||||
password: "{{ _oslomsg_notify_password }}"
|
password: "{{ _oslomsg_notify_password }}"
|
||||||
update_password: always
|
update_password: always
|
||||||
|
Loading…
Reference in New Issue
Block a user