I am going through the K8s for Absolute beginners and I am trying to access the URL for the minikube
minikube service hello-minikube
My terminal output:
Starting tunnel for service hello-minikube.
|-----------|----------------|-------------|------------------------|
Because you are using a Docker driver on darwin, the terminal needs to be open to run it.
I am not able to access URL even after toggling with firewall enabled.
Please advise on how to access in current configuration not able to use Virtualbox integration or possibly how to enable virtualbox integration with M1? Thank you.
kubectl run no longer creates a deployment, it creates a pod as the instructions are slightly different now so it seems that you have created a pod, not deployment , check the below example to know the updated instructions :
The steps provided show creating a deployment not a pod. Where can we find how to create a pod properly and expose it? I’m following Demo - Minikube-Setup - KodeKloud and I’m stuck because of this step.