Skip to content

Instantly share code, notes, and snippets.

@emsesc
Last active September 18, 2021 17:50
Show Gist options
  • Save emsesc/2636308d55eccce5d8d3b01948c374d5 to your computer and use it in GitHub Desktop.
Save emsesc/2636308d55eccce5d8d3b01948c374d5 to your computer and use it in GitHub Desktop.
Minikube Deployment

Download minikube

Follow instructions here to install minikube.

Deploy Cluster

minikube start

(For now download file from here, we can add wget command later).

unzip minikube.zip
kubectl apply -f minikube

Test Cluster

To test the API directly:

minikube service -n default --url gateway-service

To interact with the API through the frontend:

minikube service -n default --url frontend-service

Cleaning Up

minikube delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment