Ask HN: Git repositories to learn how to develop microservices on k8s

3 points by erkanerol ↗ HN
I am looking for git repositories to learn how to develop microservices on k8s. Java and Go are preferred on the backend side.

2 comments

[ 3.4 ms ] story [ 17.3 ms ] thread
On the Go side take a look at go-kit

https://github.com/go-kit/kit

You can get a lot of boilerplate out of the box, and it's not hard to extend it with more sophisticated features like custom server timeouts.

The New York Times has a nice set of Go microservice frameworks with simple server boilerplate also:

https://github.com/NYTimes/gizmo

Just FYI, microservices only make sense in an organizational context. They're a way to deal with scaling up very large number of developers working on one giant app.

If you're a sole developer you don't need to use microservices.