Skip to content

Instantly share code, notes, and snippets.

View 4fath's full-sized avatar
💫
What's happening?

Fatih Şentürk 4fath

💫
What's happening?
View GitHub Profile
@4fath
4fath / minikube_install.sh
Last active February 28, 2019 14:59
install virtualbox, kubectl and minikube for full local kubernetes at one best shot
#!/bin/bash
sudo apt install curl
VTx_ENABLED="$(egrep --color 'vmx|svm' /proc/cpuinfo)"
if [ "$VTx_ENABLED" = "" ];
then
echo "ERROR: vtx empty"
exit
fi