| > I believe the idea is that it makes it very explicit to track provenance of code between environments, eg merge staging->master is a branch merge operation.= That isn't quite my understanding - but I am happy to be corrected. There wouldn't be be a staging->main flow. Rather CI would be pushing main->dev|staging|prod, as disconnected branches. My understanding of the problem being solved, is how to see what is actually changing when moving between module versions by explicitly outputting the dynamic manifest results. I.e. instead of the commmit diff showing 4.3 -> 5.0, it shows the actual Ingress / Service / etc being updated. > With directories you need to resort to diffing to spot any changes between files in folders. Couldn't you just review the Commit that instigated that change to that file? If the CI is authoring the change, the commit would still be atomic and contain all the other changes. > but if you have a workflow where hot-fixes can get promoted from older versions Yeah 100%. In either case, I'm not saying it's wrong by any stretch. It just feels 'weird' to use branches to represent codebases which will never interact or be merged into each other. |
Probably just a matter of taste, but I think having the files for different environments "side by side" makes it actually easier to compare them if needed, and you still have the full commit history for tracking changes to each environment.