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: Kubernetes Deployers

1 pointsby jdwyahover 1 year ago
What are we using to deploy to Kubernetes these days?<p>I have been using the same simple ruby script&#x2F;gem for a long time. Honestly, I find it pretty decent, but it also feels crazy to me that there isn&#x27;t something better. Don&#x27;t we all need something to turn a basic description of our application into k8s yaml and give us some help with kubectl commands?<p>Every time I look around, I find things that feel pretty complex like https:&#x2F;&#x2F;github.com&#x2F;psyhomb&#x2F;k8s-deployer or they are way more than I want. I just want to say: run this command as a cron and this command as a daemon and this one as a web app. With a bit of flexibility &#x2F; customizability.<p>Am I missing something? For reference, https:&#x2F;&#x2F;github.com&#x2F;prefab-cloud&#x2F;pfab is my thing. But I wouldn&#x27;t say it&#x27;s really fit for public consumption today.

2 comments

yuppie_scumover 1 year ago
Use a managed platform like minikube for your laptop, or terraform to provision EKS if you’re in in AWS, or the equivalents in the other clouds.<p>There’s no point to building your own control plane from scratch anymore for 95% of cases.
评论 #38487379 未加载
iteratorxover 1 year ago
Have a look at bunnyshell.com<p>It can deploy full environments, not just apps