Comment 2 for bug 1603254

Revision history for this message
Kevin Carter (kevin-carter) wrote :

@Adrian I've looked over this issue and the resulting PR, the change looks fine however it will need to be in master before it's ported to stable/mitaka.

That said, what you're looking to accomplish can already be done without any code changes. Within your "user_variables.yml" file set a config override to add in the items you need. Documentation [ http://docs.openstack.org/developer/openstack-ansible/developer-docs/extending.html?highlight=config_template ].

**overrides you would need**

keystone_keystone_conf_overrides:
  resource:
    admin_project_name: "{{ keystone_admin_tenant_name }}"
    admin_project_domain_name: "default"

With that set in your variable file re-run the "os-keystone-install.yml" play to drop the new bits in place. To make the playbook run faster you can use tags, something like so: ``openstack-ansible os-keystone-install.yml --tags keystone-config``