Install socat on Kubernetes node for use by port forwarding.

This commit is contained in:
Patrick J. McNerthney 2020-09-08 17:16:17 -10:00 committed by Nabarun Pal
parent bccdc73c3f
commit a037380b40
No known key found for this signature in database
GPG Key ID: 611D5079D826B150

View File

@ -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)