Fix: Use lf-activate-venv to install openstack dep
[releng/builder.git] / jjb / opendaylight-infra-copy-ssh-keys.sh
index 493f776b7549cda38814220fa9dfcf1ab70c63b6..d80d9d8c4e15bc78e47f5b6b04e78ce36b6607a9 100644 (file)
@@ -41,6 +41,25 @@ function copy-ssh-keys-to-slave() {
     done
 }
 
+# shellcheck disable=SC1090
+. ~/lf-env.sh
+
+
+# Check if openstack venv was previously created
+if [ -f "/tmp/.os_lf_venv" ]; then
+    os_lf_venv=$(cat "/tmp/.os_lf_venv")
+fi
+
+if [ -d "${os_lf_venv}" ] && [ -f "${os_lf_venv}/bin/openstack" ]; then
+    echo "Re-use existing venv: ${os_lf_venv}"
+    PATH=$os_lf_venv/bin:$PATH
+else
+    lf-activate-venv --python python3 \
+        python-heatclient \
+        python-openstackclient \
+        yq
+fi
+
 # Print the Stack outputs parameters so that we can identify which IPs belong
 # to which VM types.
 openstack stack show -c outputs "$STACK_NAME"