Use raw url for pip deps

Use the raw url to fix pip install and correct error
on build parameter.

Change-Id: I927bb7a720a67cc8ce9074f3d7d4540ee1699c67
This commit is contained in:
Antony Messerli 2019-07-10 15:24:26 -05:00
parent b6cb0ce8da
commit 3191e3b93d
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ if [[ ${#BINDEP_PKGS} > 0 ]]; then
fi
# Install latest OSA supported Ansible version
sudo pip install -r https://opendev.org/openstack/openstack-ansible-tests/src/branch/${OSA_DEPS_BRANCH}/test-ansible-deps.txt
sudo pip install -r https://opendev.org/openstack/openstack-ansible-tests/raw/branch/${OSA_DEPS_BRANCH}/test-ansible-deps.txt
# Get the latest OSA plugins
# This is used to allow access from the MNAIO host to

View File

@ -59,7 +59,7 @@ ansible-playbook -vv \
-e loadbalancer_vm_server_ram=${LOADBALANCER_VM_SERVER_RAM:-"2048"} \
-e logging_vm_server_ram=${LOGGING_VM_SERVER_RAM:-"2048"} \
-e swift_vm_server_ram=${SWIFT_VM_SERVER_RAM:-"2048"} \
-e enable_ceph_storage=${ENABLE_CEPH_STORAGE=-"false"} \
-e enable_ceph_storage=${ENABLE_CEPH_STORAGE:-"false"} \
-e container_tech=${CONTAINER_TECH:-"lxc"} \
-e ipxe_kernel_base_url=${IPXE_KERNEL_BASE_URL:-"http://boot.ipxe.org"} \
-e ipxe_path_url=${IPXE_PATH_URL:-""} ${MNAIO_ANSIBLE_PARAMETERS} \