Documentation to successfully setup Minikube for local development
- Ensure you have successfully installed Minikube
- Ensure you have a successfully installed version of kubectl
- Download and Install Minikube on your host machine
- Download and Install Kubectl on your host machine
- Download and Install Docker on your host machine
- Download and Install the Virtualbox driver if it's not already on your host machine
- From a terminal window run:
pip install -r requirements.txt - From a terminal window run:
python3 bootstrap.py -f minikube-inputs.yaml- Feel free to edit the
minikube-inputs.yamlfile to meet your local environment's needs
- Feel free to edit the
- cpu parameter - number of vCPUs
- memory parameter - amount of RAM in MBs
- action - either 'start' or 'stop'
- delete_instance - boolean
- debug - boolean
cpu: 4
memory: 8196
action: start
delete_instance: True
debug: False