- Rebased pcs to the latest sources (see CHANGELOG.md) Resolves: RHEL-7681, RHEL-21050, RHEL-22423, RHEL-35407, RHEL-44347, RHEL-63186, RHEL-66607, RHEL-76176, RHEL-81938 - Rebased HA Cluster Management add-on to the latest sources Resolves: RHEL-30686, RHEL-30695, RHEL-30698, RHEL-79314, RHEL-84143, RHEL-85195 - The upstream version of HA Cluster Management add-on can now be queried through RPM - see bundled(pcs-web-ui) Resolves: RHEL-86227 - Updated bundled rubygems: backports, childprocess, ffi, puma, rack, rack-protection, rack-session, rack-test, sinatra, tilt - Updated bundled Python dependency dacite - Removed BuildRequires: python >= 3.12 - correct python requirement is generated by rpm based on the system interpreter - Added BuildRequires: libffi-devel - this is present in upstream, but was missing here - Added BuildRequires: corosync-qdevice-devel - this is a buildroot only package with pc file for corosync-qdevice, without it, autotools use default paths - Simplified tarball versioning mechanism and added tarball-version macro to simplify pcs-web-ui version reporting. Pcs-web-ui reported version uses the new ui_tarball_version macro or ui_version macros depending on whether the first one exists
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
From a311caa8d5a9450517b74775f42f756cb240f963 Mon Sep 17 00:00:00 2001
|
|
From: Michal Pospisil <mpospisi@redhat.com>
|
|
Date: Thu, 23 May 2024 17:22:12 +0200
|
|
Subject: [PATCH 1/2] do not support cluster setup with udp(u) transport in
|
|
RHEL10
|
|
|
|
---
|
|
pcs/pcs.8.in | 2 ++
|
|
pcs/usage.py | 1 +
|
|
2 files changed, 3 insertions(+)
|
|
|
|
diff --git a/pcs/pcs.8.in b/pcs/pcs.8.in
|
|
index e2ca2d59..051de0c4 100644
|
|
--- a/pcs/pcs.8.in
|
|
+++ b/pcs/pcs.8.in
|
|
@@ -479,6 +479,8 @@ By default, encryption is enabled with cipher=aes256 and hash=sha256. To disable
|
|
|
|
Transports udp and udpu:
|
|
.br
|
|
+WARNING: These transports are not supported in RHEL 10.
|
|
+.br
|
|
These transports are limited to one address per node. They do not support traffic encryption nor compression.
|
|
.br
|
|
Transport options are: ip_version, netmtu
|
|
diff --git a/pcs/usage.py b/pcs/usage.py
|
|
index ac1376f2..187d0b1a 100644
|
|
--- a/pcs/usage.py
|
|
+++ b/pcs/usage.py
|
|
@@ -1502,6 +1502,7 @@ Commands:
|
|
hash=sha256. To disable encryption, set cipher=none and hash=none.
|
|
|
|
Transports udp and udpu:
|
|
+ WARNING: These transports are not supported in RHEL 10.
|
|
These transports are limited to one address per node. They do not
|
|
support traffic encryption nor compression.
|
|
Transport options are:
|
|
--
|
|
2.49.0
|
|
|