Skip to content

Instantly share code, notes, and snippets.

View Sillians's full-sized avatar
💭
AI | ML Hobbyist

Basil Ihuoma Sillians

💭
AI | ML Hobbyist
View GitHub Profile
@Sillians
Sillians / Kubeflow on GCP
Created September 4, 2020 12:54
Error Encountered whilst Deploying Kubeflow on GCP
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
@Sillians
Sillians / install-kubernetes-flannel-centos7.md
Created February 27, 2020 12:19 — forked from rkaramandi/install-kubernetes-flannel-centos7.md
Installing Kubernetes with the Flannel Network Plugin on CentOS 7

Install Prerequisites on ALL (Worker and Master) Nodes

Let's remove any old versions of Docker if they exist:

sudo yum remove docker \
                  docker-common \
                  docker-selinux \
                  docker-engine