Extend fencing to hosts using fence_rhevm agent.

This commit extends the fencing class allowing operators to use
fence_rhevm for nodes running on oVirt / RHV.

Change-Id: I1499ef2efce2b5708262d587bf5786a329e10b09
This commit is contained in:
Luca Miccini 2019-04-12 11:14:48 +02:00
parent 541e9ea2a7
commit 4187a9d01f
1 changed files with 3 additions and 0 deletions

View File

@ -101,4 +101,7 @@ class tripleo::fencing(
$ironic_devices = local_fence_devices('fence_ironic', $all_devices)
create_resources('pacemaker::stonith::fence_ironic', $ironic_devices, $common_params)
$rhev_devices = local_fence_devices('fence_rhevm', $all_devices)
create_resources('pacemaker::stonith::fence_rhevm', $rhev_devices, $common_params)
}