Run in kubernetes

Use MS with Docker

Install docker

Use MS with Kubernetes localy

We create a extensive example an tutorial about use Python microservice scaffold with Kubernetes in this repository: https://github.com/python-microservices/microservices-chat

In the nexts lines, you can find a simple tutorial tu run this microservice in a simple Kubernetes cluster

  • Installing Kubernetes…
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.9.0/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
  • Installing Minikube…
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

Start minikube and set the environment of docker

minikube start
eval $(minikube docker-env)
kubectl config use-context minikube

If a shell isn’t your friend. You could use kubernetes web panel to see your pods:

minikube dashboard

Create your image

docker build -t template:v1 .

Deploy your images localy:

kubectl apply -f service.yaml
minikube service template

Clean your environment

kubectl delete template
kubectl delete template
docker rmi template:v1 -f
minikube stop
eval $(minikube docker-env -u)
minikube delete