From 078ab3996bd2a9fe7eff9cfc7610f396452c8334 Mon Sep 17 00:00:00 2001 From: Joyce Fee Date: Tue, 10 Dec 2024 21:12:24 -0500 Subject: [PATCH 1/3] Doc-752 Update FIPS to add tabs with one for RHEL and one for Debian and Ubuntu --- .../deploy/partials/linux/install-fips.adoc | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/modules/deploy/partials/linux/install-fips.adoc b/modules/deploy/partials/linux/install-fips.adoc index ebd1e536d..e1a1eec89 100644 --- a/modules/deploy/partials/linux/install-fips.adoc +++ b/modules/deploy/partials/linux/install-fips.adoc @@ -18,6 +18,11 @@ To run Redpanda in FIPS compliance mode, you must install the `redpanda-fips` pa - Contains a version of `rpk` built with the https://github.com/microsoft/go[Microsoft GoLang compiler^] and https://github.com/microsoft/go-crypto-openssl[Microsoft’s Go Crypto OpenSSL package^] to which `rpk` is linked, and uses the FIPS-approved version of OpenSSL. +[tabs] +===== +RHEL:: ++ +-- To install Redpanda for FIPS compliance, run: [,bash] @@ -34,4 +39,27 @@ If you wish to only use `rpk` on a FIPS host, run: sudo apt install -y redpanda-rpk-fips ---- +-- +Debian/Ubuntu:: ++ +-- +To install Redpanda for FIPS compliance, run: + +[,bash] +---- +sudo install -y redpanda-rpk-fips redpanda-fips +---- + +NOTE: Alternatively, you could run `sudo install -y redpanda-fips`, which also picks up and includes the `redpanda` install package. + +If you wish to only use `rpk` on a FIPS host, run: + +[,bash] +---- +sudo apt install -y redpanda-rpk-fips +---- + +-- +===== + See also: xref:manage:security/fips-compliance.adoc[Configure Redpanda for FIPS] From 835aee3d49ece2881430eae66e458e4e50ccf6d0 Mon Sep 17 00:00:00 2001 From: Joyce Fee <102751339+Feediver1@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:04:27 -0600 Subject: [PATCH 2/3] Update modules/deploy/partials/linux/install-fips.adoc --- modules/deploy/partials/linux/install-fips.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deploy/partials/linux/install-fips.adoc b/modules/deploy/partials/linux/install-fips.adoc index e1a1eec89..9231a5bb8 100644 --- a/modules/deploy/partials/linux/install-fips.adoc +++ b/modules/deploy/partials/linux/install-fips.adoc @@ -36,7 +36,7 @@ If you wish to only use `rpk` on a FIPS host, run: [,bash] ---- -sudo apt install -y redpanda-rpk-fips +sudo yum install -y repdanda-fips redpanda-rpk-fips ---- -- From a640eea3c6663aac057322317ef68a87587a086f Mon Sep 17 00:00:00 2001 From: Joyce Fee <102751339+Feediver1@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:20:39 -0600 Subject: [PATCH 3/3] Update modules/deploy/partials/linux/install-fips.adoc --- modules/deploy/partials/linux/install-fips.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deploy/partials/linux/install-fips.adoc b/modules/deploy/partials/linux/install-fips.adoc index 9231a5bb8..285f5268e 100644 --- a/modules/deploy/partials/linux/install-fips.adoc +++ b/modules/deploy/partials/linux/install-fips.adoc @@ -47,7 +47,7 @@ To install Redpanda for FIPS compliance, run: [,bash] ---- -sudo install -y redpanda-rpk-fips redpanda-fips +sudo apt install -y redpanda-rpk-fips redpanda-fips ---- NOTE: Alternatively, you could run `sudo install -y redpanda-fips`, which also picks up and includes the `redpanda` install package.