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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Kubernetes at big, non-tech companies?

29 点作者 mring33621将近 4 年前
So, my work is going all-in on cloud&#x2F;k8s, for software system modernization.<p>I just attended a session for a pilot project where, in order to deploy the new shiny, a human has to log into a &#x27;cluster metrics dashboard&#x27; and pick a &#x27;healthy&#x27; target cluster, based on memory, CPU, Etc.<p>Am I crazy for thinking that this misses the whole point of the technology?<p>What are your experiences with this type of modernization?

11 条评论

jacques_chester将近 4 年前
&gt; <i>Am I crazy for thinking that this misses the whole point of the technology?</i><p>Multi-cluster is not an accidental evolution. It was largely inevitable. Kubernetes has no hard tenancy concept (no, cobbling together a pile of namespaces and feature encrustations and calling it &quot;tenancy&quot; doesn&#x27;t count). Instead people simulate tenancy with multiple clusters, because that isolates a particular API server&#x27;s data completely.<p>While early attention and nerd glamour may have attached to the idea of workload consolidation, the true nexus of value these days is the API itself. This will probably remain true even while people are being burned by multi-cluster waste. There will be some movement to one of the various I-can&#x27;t-believe-it&#x27;s-not-multi-cluster solutions that are currently swirling around. Vendors of all sizes will be standing by to sell their take on the Kubernetes of Kubernetes.
评论 #27373640 未加载
frompdx将近 4 年前
I guess it would be helpful to understand what your expectations of the technology are as well as providing a few more details. What you are describing doesn&#x27;t sound crazy to me assuming selecting a cluster to deploy to is a one time thing. If it was every time you wanted to deploy a change that would be cumbersome. I suppose the step you need to do could be automated, and there are multi cluster solutions available, but I&#x27;m not familiar with them because I don&#x27;t use Kubernetes this way, so I can&#x27;t speak to how well they address this particular issue. Are you expecting that cluster selection is automated the same way that Kubernetes automatically selects which node to assign a container?<p>Edit:<p>Some things that might be helpful to know:<p>- Is your company using cloud or DC? This might explain some of the decision making.<p>- Since this is a pilot, is it possible there are plans for future improvements regarding cluster selection?
dantetheinferno将近 4 年前
I built out the Kubernetes stack for data processing &#x2F; batch processing with Airflow at Everlane. Fully automated deploys, monitoring, etc. Mind you - we didn&#x27;t build this from scratch &#x2F; use native Helm charts, but used an integration partner that gave us a much better foundation. The data engineers were responsible for maintenance, deploys, etc., but with the sophistication we got it was very rare to have to actually do helm deploys.
评论 #27380145 未加载
paxys将近 4 年前
It really depends on why your company is using multiple clusters. Are there any size constraints? Any organization rules for which application should go where?<p>Overall no it doesn&#x27;t miss the point because once you select a cluster to deploy to Kubernetes will still handle the rest for the lifetime of the application. And I imagine the selection part can be easily automated down the line as well.
heroprotagonist将近 4 年前
Selecting a ready-made cluster that you just have to check is marked healthy and has the resources your project needs?<p>Sounds like they made it really easy for you.
alboaie将近 4 年前
An auomation could break something if automaticalyy choose the wrong cluster. Are all these clusters &quot;free to pick&quot;?
yuppie_scum将近 4 年前
What in your opinion is “the point?”<p>To me as an SRE, the steps you mentioned sound entirely reasonable.
评论 #27373843 未加载
dharmab将近 4 年前
In our org, the cluster operators manage which clusters are open for onboarding vs. closed to new projects but running for existing projects (based on various scaling limits, some of which are cloud-specific). We don&#x27;t ask developers to choose what&#x27;s healthy and what&#x27;s not. Our internal tooling simply only offers &quot;open&quot; clusters.
hwatkins将近 4 年前
If you are cloud based this does not sound correct. If you have the cluster autoscaler setup, then the cluster should grow to allow for the deployment based on the constraints in your deployment.<p>If you are on prem then this is reasonable, since you have limited physical hardware so the cluster can not automatically grow.
评论 #27381805 未加载
aristofun将近 4 年前
I feel your pain man.<p>A big part of the story is that k8s is a naked king.<p>It’s just really poorly designed, over-engineered, shitty devx piece of software.<p>But most of devs eat you alive if you tell them this harsh truth.<p>We, regular engineers must be patient while people coming to enlightenment on their own and someone with big money would start developing &amp; promoting better alternative.
评论 #27380130 未加载
roschdal将近 4 年前
Kubernetes is horribly complicated, I would not recommend it to anyone.