I am trying to set up a copy of our app on my development machine using minikube. But I get an error showing up in minikube dashboard:
0/1 nodes are available: 1 Insufficient ephemeral-storage
Any ideas as to how I fix this?
The relevant part of the yaml configuration file looks like so:
resources:
requests:
memory: 500Mi
cpu: 1
ephemeral-storage: 16Gi
limits:
memory: 4Gi
cpu: 1
ephemeral-storage: 32Gi
I have tried assigning extra disk space at startup with the following but the error persists:
minikube start --disk-size 64g