You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is very dangerous to set dcs_exists_action = clean and pg_exists_action = clean, Which are safeguard variables to avoid accidentally removing any running databases or dcs instances.
It is always better to achieve that by an explicit playbook execution pgsql-rm.yml rather than change a variable.
In some case you just want to erase that possibility.
Proposal
Add two safeguard variables pg_disable_purge and dcs_disable_purge. If set to true, corresponding variable pg_exists_action and dcs_exists_action will be forced to abort to avoid purge.
The text was updated successfully, but these errors were encountered:
Scenario
It is very dangerous to set
dcs_exists_action = clean
andpg_exists_action = clean
, Which are safeguard variables to avoid accidentally removing any running databases or dcs instances.It is always better to achieve that by an explicit playbook execution
pgsql-rm.yml
rather than change a variable.In some case you just want to erase that possibility.
Proposal
Add two safeguard variables
pg_disable_purge
anddcs_disable_purge
. If set to true, corresponding variablepg_exists_action
anddcs_exists_action
will be forced toabort
to avoid purge.The text was updated successfully, but these errors were encountered: