Skip to content

Commit 12c9aa1

Browse files
committed
Correct health-azure-events to use allow-unhealthy-nodes on clone, not resource
1 parent c102100 commit 12c9aa1

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

articles/sap/workloads/high-availability-guide-suse-pacemaker.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can configure the SBD device by using either of two options:
4242
![Diagram of Pacemaker on SLES overview.](./media/high-availability-guide-suse-pacemaker/pacemaker.png)
4343

4444
>[!IMPORTANT]
45-
> When you're planning and deploying Linux Pacemaker clustered nodes and SBD devices, do not allow the routing between your virtual machines and the VMs that are hosting the SBD devices to pass through any other devices, such as a [network virtual appliance (NVA)](https://azure.microsoft.com/solutions/network-appliances/).
45+
> When you're planning and deploying Linux Pacemaker clustered nodes and SBD devices, don't allow the routing between your virtual machines and the VMs that are hosting the SBD devices to pass through any other devices, such as a [network virtual appliance (NVA)](https://azure.microsoft.com/solutions/network-appliances/).
4646
>
4747
> Maintenance events and other issues with the NVA can have a negative impact on the stability and reliability of the overall cluster configuration. For more information, see [User-defined routing rules](../../virtual-network/virtual-networks-udr-overview.md).
4848
@@ -774,11 +774,11 @@ Make sure to assign the custom role to the service principal at all VM (cluster
774774
> - SLES 12 SP5: fence-agents 4.9.0+git.1624456340.8d746be9-3.35.2 or later
775775
> - SLES 15 SP1 and higher: fence-agents 4.5.2+git.1592573838.1eee0863 or later.
776776
>
777-
> Earlier versions will not work correctly with a managed identity configuration.
777+
> Earlier versions don't work correctly with a managed identity configuration.
778778
779779
10. **[A]** Install fence-agents-azure-arm package.
780780
781-
For **SLES 12 SP5**, if you are using `fence-agents` version `4.9.0+git.1624456340.8d746be9-3.41.3` or later, and for **SLES 15 SP4 and newer**, you need to install the `fence-agents-azure-arm` package. This package will include all required dependencies.
781+
For **SLES 12 SP5**, if you're using `fence-agents` version `4.9.0+git.1624456340.8d746be9-3.41.3` or later, and for **SLES 15 SP4 and newer**, you need to install the `fence-agents-azure-arm` package. This package includes all required dependencies.
782782

783783
```bash
784784
# On SLES 12 SP5 with fence-agents version 4.9.0+git.1624456340.8d746be9-3.41.3 or higher. You might need to activate the public cloud extension first
@@ -792,7 +792,7 @@ Make sure to assign the custom role to the service principal at all VM (cluster
792792

793793
11. **[A]** Install the Azure Python SDK and Azure Identity Python module.
794794

795-
For **SLES 12 SP5**, if your `fence-agents` version is lower than `4.9.0+git.1624456340.8d746be9-3.41.3`, and for **SLES 15 SP3 and below**, you need to install below additional packages.
795+
For **SLES 12 SP5**, if your `fence-agents` version is lower than `4.9.0+git.1624456340.8d746be9-3.41.3`, and for **SLES 15 SP3 and lower**, you need to install below additional packages.
796796

797797
```bash
798798
# You might need to activate the public cloud extension first
@@ -821,7 +821,7 @@ Make sure to assign the custom role to the service principal at all VM (cluster
821821
Replace the IP address and the hostname in the following commands.
822822

823823
>[!IMPORTANT]
824-
> If you're using hostnames in the cluster configuration, it's essential to have a reliable hostname resolution. The cluster communication will fail if the names are unavailable, and that can lead to cluster failover delays.
824+
> If you're using hostnames in the cluster configuration, it's essential to have a reliable hostname resolution. The cluster communication fails if the names are unavailable, and that can lead to cluster failover delays.
825825
>
826826
> The benefit of using */etc/hosts* is that your cluster becomes independent of the DNS, which could be a single point of failure too.
827827

@@ -1052,11 +1052,12 @@ Azure offers [scheduled events](/azure/virtual-machines/linux/scheduled-events).
10521052
10531053
```bash
10541054
sudo crm configure primitive health-azure-events ocf:heartbeat:azure-events-az \
1055-
meta allow-unhealthy-nodes=true failure-timeout=120s \
1055+
meta failure-timeout=120s \
10561056
op start start-delay=60s \
10571057
op monitor interval=10s
10581058

1059-
sudo crm configure clone health-azure-events-cln health-azure-events
1059+
sudo crm configure clone health-azure-events-cln health-azure-events \
1060+
meta allow-unhealthy-nodes=true
10601061
```
10611062
10621063
> [!NOTE]

0 commit comments

Comments
 (0)