Deploying to Minikube(Work in progress)

We will deploy 2 different projects in this article. One is a simple single command line application and another is a web app that requires database. We will be using the skaffold project as it will make it easy to do continous deployment

  • deploying via IDE
  • deploying via CLI

Deploying hello-world

https://kubernetes.io/docs/setup/learning-environment/minikube/

* kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080

* kubectl expose deployment hello-minikube --type=NodePort

* kubectl get pod

* minikube service hello-minikube --url

K8 Tools