Wait until the ansible bug is fixed

This commit is contained in:
Aurélien Bompard 2018-10-05 13:24:50 +00:00
parent 2ef372c962
commit f272524225

View file

@ -42,29 +42,31 @@
- amqp_bridge_verify_missing - amqp_bridge_verify_missing
tags: tags:
- config - config
- name: Create the amqp-to-zmq bindings # Do this manually until an Ansible bugfix is deployed
rabbitmq_binding: # https://github.com/ansible/ansible/pull/45109
source: amq.topic #- name: Create the amqp-to-zmq bindings
destination: amqp_to_zmq # rabbitmq_binding:
destination_type: queue # source: amq.topic
vhost: /pubsub # destination: amqp_to_zmq
login_user: admin # destination_type: queue
login_password: "{{ rabbitmq_admin_password_staging }}" # vhost: /pubsub
tags: # login_user: admin
- config # login_password: "{{ rabbitmq_admin_password_staging }}"
- name: Create the verify-missing bindings # tags:
rabbitmq_binding: # - config
source: "{{item}}" #- name: Create the verify-missing bindings
destination: amqp_bridge_verify_missing # rabbitmq_binding:
destination_type: queue # source: "{{item}}"
vhost: /pubsub # destination: amqp_bridge_verify_missing
login_user: admin # destination_type: queue
login_password: "{{ rabbitmq_admin_password_staging }}" # vhost: /pubsub
with_items: # login_user: admin
- amq.topic # login_password: "{{ rabbitmq_admin_password_staging }}"
- zmq.topic # with_items:
tags: # - amq.topic
- config # - zmq.topic
# tags:
# - config
# Now create the app # Now create the app