TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

3 pointsby erkanerolover 6 years ago
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

programdover 6 years ago
On the Go side take a look at go-kit<p><a href="https:&#x2F;&#x2F;github.com&#x2F;go-kit&#x2F;kit" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;go-kit&#x2F;kit</a><p>You can get a lot of boilerplate out of the box, and it&#x27;s not hard to extend it with more sophisticated features like custom server timeouts.<p>The New York Times has a nice set of Go microservice frameworks with simple server boilerplate also:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;NYTimes&#x2F;gizmo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;NYTimes&#x2F;gizmo</a>
itamarstover 6 years ago
Just FYI, microservices only make sense in an organizational context. They&#x27;re a way to deal with scaling up very large number of developers working on one giant app.<p>If you&#x27;re a sole developer you don&#x27;t need to use microservices.