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.

A Simple Way to Setup/Build/Deploy React App and API on GKE/Kubernetes

54 pointsby mv1over 5 years ago

5 comments

transitivebsover 5 years ago
The word simple should never be in close proximity to Kubernetes. They&#x27;re mutually exclusive when you consider the total cost of devops, maintenance, debugging, and all the time you&#x27;ll inevitably waste on things that have nothing to do with your business&#x27; unique value proposition.<p>With that being said, adaptjs looks interesting for more complex scenarios that actually warrant such complexity. My only gripe is that 95% of companies that use stuff like this use it to satisfy developer&#x27;s desires as opposed to satisfying a real product &#x2F; business need.
评论 #22121742 未加载
veeralpatel979over 5 years ago
For anyone looking to deploy a React app, I&#x27;d _highly_ recommend Netlify: <a href="https:&#x2F;&#x2F;www.netlify.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.netlify.com&#x2F;</a><p>It integrates with GitHub nicely, offering deploy previews for every push and continuous deployment on pushes to master.<p>Their free tier is generous, too - you can set up a custom domain for each of your projects for free and get up to 300 build minutes for free per month.
评论 #22122326 未加载
saxover 5 years ago
I love the component based approach of composing backend assets.<p>This feels like the next step up from terraform based systems.<p>Curious if this approach has been tried before?
评论 #22121055 未加载
dangover 5 years ago
A tutorial like this is not a valid Show HN. Please see <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;showhn.html" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;showhn.html</a>.
评论 #22123094 未加载
bionhowardover 5 years ago
Kudos for infrastructure as code. Surprisingly many companies, particularly database companies, don’t deliver infrastructure as code yet, which makes it harder for their prospects to become paying customers.<p>One way to make your examples better would be to make one block of code with all the commands at the bottom or top of the page, or a link to a Makefile, so the motivated reader can copy paste everything into their IDE at once. Terraform provider docs are great for this: code at the top ... however the code is often limited to just one resource, when the user goal requires a number of resources.<p>It’s subtle, but declarative programming could mean one of two things: declare the systems to achieve your goal (this is how it usually works right now) or declare the goal. The latter is much better UX for devops folks because the goal is what we care about. You want to host a site, not connect a bucket to a cdn and dns. Declare the purpose, not the mechanism, and everyone saves a lot of time, because there are many micro states (implementation options) per macro state (big picture goal) (entropy 101)