Hacker News new | ask | show | jobs
by JamesSwift 1887 days ago
That seems overwhelming to me. Do you feel this is a tenable strategy? Or is the number of deployments becoming an issue?
2 comments

This is similar to what $myclient is doing.

Parent comment doesn't mention whether identification of versions is done manually or whether they just grab master. If the latter, it's probably reasonable. At $myclient, every release to stage and prod requires teams to manually identify each version of each microservice as well as the stories (JIRA tickets) that are being deployed. This is extremely painful, time-consuming, and error-prone. Avoid at all cost; as the number of services grows, the pain/time/error cost appears to increase geometrically.

Our master versions automatically create new images with unique ids and JIRA stories are associated with them. You can see that from JIRA to Gitlab and vice versa.

Having said that there are people that do some manual correlation. Mainly to be able to determine that the fixes actually got in.

If you automate enough you almost don't need to know the specifics. We no longer monitor actively during production deployments. They just work, once every 5 months there is a deployment that needs to be escalated to us.