-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Description
Cluster bootstrap and more:
Due to a recent update in pacemaker, "crm cluster init" automatically creates a default value of "resource-stickiness". Anyone wishing to update/overwrite this value can do so by:
crm_attribute -t rsc_defaults -n resource-stickiness -v <new_value>
But in our best practice guide, we are configuring a new value of this parameter with a different id. Using a different id creates a duplicate entry of this parameter and not overwrite as with above crm_attribute command. If we want to use a new id as in the best practice then the old entry of this parameter should be deleted(before configuring a new entry) using following command:
crm_attribute -t rsc_defaults -n resource-stickiness -D
Reactions are currently unavailable