Skip to content

Commit

Permalink
Install socat on Kubernetes node for use by port forwarding.
Browse files Browse the repository at this point in the history
  • Loading branch information
iciclespider committed Sep 9, 2020
1 parent 3da49a2 commit b1dd9c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/kube-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ setenforce 0
HOME=/home/travis
sudo mount --make-rshared /

# Install conntrack (required by minikube/K8s 1.18+)
# Install conntrack (required by minikube/K8s 1.18+),
# and socat, which is required for port forwarding.
sudo apt-get update
sudo apt-get install -y conntrack
sudo apt-get install -y conntrack socat

# Install docker if needed
path_to_executable=$(which docker)
Expand Down

0 comments on commit b1dd9c4

Please sign in to comment.