Make it easier to customize set of apps
Right now, if you want to add nextcloud apps, you can either
- Add them manually through the nextcloud UI -- or using your own script with the
occ
CLI, etc. Or: - Change the
apps
helm value to add your app to that list, which gets picked up by the nextcloud pod startup script.
However, option 2. is very cumbersome, because there's no way to merge your additions with the default, so you have to copy the whole set of Stackspin default apps and then add your own to it. Because the list also includes app versions, your copy will soon become outdated as well.
We could make option 2. easier by having an additional apps-custom
helm value, which works in the same way but can then contain only your own additions.
I'm not sure how important this is though, because option 1. is a pretty good alternative in most cases.