Jolie micro services on Kubernetes
Jolie is a (micro) service-oriented language. Jolie's capabilities work well with Docker and you can find an example in the official documentation here . So d eploying a Jolie service in a Docker container is quite easy. Now it's time to go onboard with Kubernetes ;-) This is only a little demo on how to set up a Kubernetes environment on your PC (thanks to minikube) and build up a scalable clusterized version of Jolie's "Hello world" example. You can find Jolie examples on this GitHub project . What we are going to do now is to transform "01_getting_started" sample (which simply twices a number) into a powerful Kubernetes scalable app (doing exactly the same thing, but in a cool way). If you object that this is very unreasonable, I have to remind you that it is perfectly aligned with today's software industry standards. :-P To be honest I'm not going to explain what Kubernetes is and how it does what it does, so please go read a...