Let's remove any old versions of Docker if they exist:
sudo yum remove docker \
docker-common \
docker-selinux \
docker-engine
These were the steps I took : | |
# make a bin folder to contain the kfctl | |
mkdir ~/bin | |
# download kfctl from the releases page | |
wget -P /tmp https://github.com/kubeflow/kfctl/releases/download/v1.0/kfctl_v1.0-0-g94c35cf_linux.tar.gz | |
# unzip to the bin folder | |
tar -xvf /tmp/kfctl_v1.0-0-g94c35cf_linux.tar.gz -C ~/bin | |
# add the kfctl binary to the PATH | |
export PATH=$PATH:~/bin |