Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#1185 from Nordix/lentzi90/fix-sshu…
Browse files Browse the repository at this point in the history
…ttle-install

🐛 Install sshuttle using pip instead of from source
  • Loading branch information
k8s-ci-robot authored Mar 29, 2022
2 parents 2e5c4b1 + 833d022 commit 1c3cb90
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions hack/ci/create_devstack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,7 @@ function wait_for_ssh {
function start_sshuttle {
if ! command -v sshuttle;
then
# Install sshuttle from source because we need: https://github.com/sshuttle/sshuttle/pull/661
# TODO(sbueringer) install via pip after the next release after 1.0.5 via:
# pip3 install sshuttle
pushd /tmp
git clone https://github.com/sshuttle/sshuttle.git
cd sshuttle
pip3 install .
popd || exit 1
pip3 install sshuttle
fi

kill_sshuttle
Expand Down

0 comments on commit 1c3cb90

Please sign in to comment.