georchestra / helm-georchestra

geOrchestra helm chart
3 stars 6 forks source link

mapstore: strategy RollingUpdate improvements #93

Open edevosc2c opened 4 months ago

edevosc2c commented 4 months ago

Currently, mapstore is in strategy Recreate because by default mapstore may automatically update the database schema. Recreate avoids having an old mapstore that is using the old db schema while a new one is updating the schema, essentially avoiding any potential SQL conflicts.

But you can ask mapstore to not update the schema automatically: validate: validate the schema, makes no changes to the database.. This would allow the administrator to set mapstore to RollingUpdate because it would be safe from unwanted SQL changes.

The goal of this issue is to offer the ability to: