Genericize rolenames

This commit is contained in:
Andy McCrae 2016-05-23 15:27:48 +01:00
parent 8f8b4eaf86
commit ec28d2a6e2
3 changed files with 3 additions and 3 deletions

View File

@ -60,6 +60,6 @@
delegate_to: "{{ groups['galera_all'][0] }}" delegate_to: "{{ groups['galera_all'][0] }}"
when: inventory_hostname == groups['glance_all'][0] when: inventory_hostname == groups['glance_all'][0]
roles: roles:
- role: "openstack-ansible-os_glance" - role: "{{ glance_rolename | default('os_glance') }}"
vars_files: vars_files:
- test-vars.yml - test-vars.yml

View File

@ -55,7 +55,7 @@
tags: tags:
- mysql-db-setup - mysql-db-setup
roles: roles:
- role: "openstack-ansible-os_keystone" - role: "{{ keystone_rolename | default('os_keystone') }}"
vars_files: vars_files:
- test-vars.yml - test-vars.yml

View File

@ -27,6 +27,6 @@
- inventory_hostname in groups['swift_all'] - inventory_hostname in groups['swift_all']
- hostvars[inventory_hostname]['container_networks']['replication_address']['address'] is defined - hostvars[inventory_hostname]['container_networks']['replication_address']['address'] is defined
roles: roles:
- role: "openstack-ansible-os_swift" - role: "{{ swift_rolename | default('os_swift') }}"
vars_files: vars_files:
- test-vars.yml - test-vars.yml