From 9547975ce710617f2dd003da63ad16715fbb8272 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Thu, 17 Jun 2021 13:42:44 +0300 Subject: [PATCH] Use openstack_repo_url for requirements_git_url Currentlly we may use use different proto for repo server, while only http is currently supported. Anyway it's worth to simplify statement and use previously defined openstack_repo_url. Change-Id: I6447f2dfec0d2cf67f9dfebc3975bab96562d9a2 --- playbooks/defaults/source_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/defaults/source_install.yml b/playbooks/defaults/source_install.yml index 8459378850..66a7f924c2 100644 --- a/playbooks/defaults/source_install.yml +++ b/playbooks/defaults/source_install.yml @@ -36,4 +36,4 @@ openstack_db_setup_host: "{{ openstack_service_setup_host }}" openstack_db_setup_python_interpreter: "{{ openstack_service_setup_host_python_interpreter }}" # Locally cached copy on the repo server for the OpenStack upper-constraints.txt -requirements_git_url: "{{ openstack_service_internaluri_proto ~ '://' ~ internal_lb_vip_address ~ ':' ~ repo_server_port ~ '/constraints/upper_constraints_' ~ requirements_git_install_branch ~ '.txt' }}" \ No newline at end of file +requirements_git_url: "{{ openstack_repo_url ~ '/constraints/upper_constraints_' ~ requirements_git_install_branch ~ '.txt' }}"