Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
| #!/usr/bin/env bash | |
| padding () { | |
| local char=" " | |
| if [ "$#" -gt "1" ]; then | |
| local char=${1:-$char} | |
| local count=${2:-"1"} | |
| elif [ "$#" -eq "1" ]; then | |
| local count=${1:-"1"} | |
| fi |