From 1059b19b6a1d1e29e324c192eb267f1a2a346066 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 28 Mar 2017 15:06:35 +0100 Subject: [PATCH] Keystone: Source template files from git or deploy host Instead of sourcing the paste/policy files from the role, the deploy host will first be checked, then the git source. This eliminates our need to carry the template files and keep them up to date. It also ensures that if a custom git source or alternative SHA is used, the correct source templates are used. Related-To: I910bb1700bafd48185c15d64401c8f8e93c696ea Change-Id: I97476c42172cace5601f777e771ba0aa649b05ca --- playbooks/inventory/group_vars/keystone_all.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/playbooks/inventory/group_vars/keystone_all.yml b/playbooks/inventory/group_vars/keystone_all.yml index 0b48606884..eac6959037 100644 --- a/playbooks/inventory/group_vars/keystone_all.yml +++ b/playbooks/inventory/group_vars/keystone_all.yml @@ -25,3 +25,6 @@ keystone_package_state: "{{ package_state }}" # venv fetch configuration keystone_venv_tag: "{{ venv_tag }}" keystone_venv_download_url: "{{ venv_base_download_url }}/keystone-{{ openstack_release }}-{{ ansible_architecture | lower }}.tgz" + +# locations for fetching the default files from the git source +keystone_git_config_lookup_location: "{{openstack_repo_url }}/openstackgit/keystone"