openstack-ansible-os_magnum/examples/playbook.yml
wangqi 6ed8767cd7 Trivial: Fix the pep8 warning
The yaml should start with "---"

Change-Id: I55a1dfd56348d42c1a9a9ffc3060efbef16fbd6a
2018-08-06 07:35:59 +00:00

17 lines
533 B
YAML

---
- name: Install Magnum server
hosts: magnum_all
user: root
roles:
- { role: "os_magnum", tags: [ "os-magnum" ] }
vars:
magnum_galera_address: "{{ internal_lb_vip_address }}"
magnum_galera_database_name: magnum_service
magnum_galera_user: magnum
magnum_oslomsg_rpc_userid: magnum
magnum_oslomsg_rpc_vhost: /magnum
magnum_oslomsg_notify_userid: magnum
magnum_oslomsg_notify_vhost: /magnum
ansible_hostname: "{{ container_name }}"
is_metal: "{{ properties.is_metal|default(false) }}"