diff --git a/SetupGuide.pdf b/SetupGuide.pdf deleted file mode 100644 index 5423c7e..0000000 Binary files a/SetupGuide.pdf and /dev/null differ diff --git a/SetupGuideAiO.pdf b/SetupGuideAiO.pdf deleted file mode 100644 index 469e51c..0000000 Binary files a/SetupGuideAiO.pdf and /dev/null differ diff --git a/minikube-docker-setup.sh b/minikube-docker-setup.sh deleted file mode 100755 index 7fe5f61..0000000 --- a/minikube-docker-setup.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash -# last minute patch, added 20 Aug. 2021 -# currently only supported on Ubuntu 20.04 LTS - -sudo apt-get update -y -sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common -y -curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - -sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" -sudo apt-get update -y -sudo apt-get install docker-ce docker-ce-cli containerd.io -y - -curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl -chmod +x ./kubectl -sudo mv ./kubectl /usr/local/bin/kubectl - -curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 -sudo install minikube-linux-amd64 /usr/local/bin/minikube -#### -echo the script is now ready -echo manually run minikube start --vm-driver=docker to start minikube - -sudo usermod -aG docker $USER -newgrp docker - -minikube start --vm-driver=docker