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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What are some of the biggest pain points when deploying applications?

9 点作者 sdomino超过 8 年前
What are some of the biggest pain points that developers are experiencing when trying to deploy an application to production and what are some of the current tools that are being used to help alleviate some of these problems?

4 条评论

twunde超过 8 年前
One of the biggest problems I've seen is how much incorporating secret management complicates deployments. As soon as you add that, you need some sort of encrypted management store (Vault, etc) some workflow to add new secrets, and now you need more refined access control and a lot more work in automation. Simple git push/pull deployments are gone. Default Fabric, Capistrano scripts need to be heavily rewritten and most often this means limiting who can deploy.
sanderson1超过 8 年前
Oh man, where to start...<p>- Environment Consistency<p>- Secure Networking<p>- Access Control<p>- Load Balancing<p>- Failover<p>- CI&#x2F;CD Setup<p>- I could keep going...<p>There&#x27;s a lot of services out there help to alleviate many of these. Companies like Heroku, Codeship, Engine Yard, etc. One of the newest services to hit the scene is Nanobox (<a href="https:&#x2F;&#x2F;nanobox.io" rel="nofollow">https:&#x2F;&#x2F;nanobox.io</a>).
technologyvault超过 8 年前
The dependence upon dev ops who aren&#x27;t always in sync with what apps need to thrive is a pain in the rear.
fizerkhan超过 8 年前
Lot of things. Few things that hit me recently<p>* Security<p>* Backup and Restore<p>* Health and Performance Monitoring<p>* Load Balancing