We're automating changes to our standby F5 LTM host through the PowerShell iControl snap-in.
We want to programmatically check if there are changes pending between our standby and live F5 hosts before our automation makes any changes.
Is there a way to check for pending changes through the iControl snap-in or API?
I found the answer in the in the iControl wiki. The
get_sync_status_overview()
method "gets the status of the current device's presence in all device groups in which it is a member"Wiki reference: https://devcentral.f5.com/wiki/iControl.Management__DeviceGroup__SyncStatus.ashx
I've written the following function in PowerShell that others may find useful when attempting the same kind of operation. It will return true if the device is standalone or in sync with devices in it's group, it will return false if there are changes on the F5 host that need to be synced to the group and throw an error in all other cases:
NOTE: This function assumes the Initialize-F5.iControl function has run and the user is already authenticated to an F5 host