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: What are some of the biggest pain points when deploying applications?

9 pointsby sdominoover 8 years ago
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 comments

twundeover 8 years ago
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.
sanderson1over 8 years ago
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>).
technologyvaultover 8 years ago
The dependence upon dev ops who aren&#x27;t always in sync with what apps need to thrive is a pain in the rear.
fizerkhanover 8 years ago
Lot of things. Few things that hit me recently<p>* Security<p>* Backup and Restore<p>* Health and Performance Monitoring<p>* Load Balancing