TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

3 点作者 erkanerol超过 6 年前
I am looking for git repositories to learn how to develop microservices on k8s. Java and Go are preferred on the backend side.

2 条评论

programd超过 6 年前
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>
itamarst超过 6 年前
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.