Skip to content

Commit a3df94e

Browse files
committed
hostcrypt: update fips instructions to rhel9
Update the warning message to say rhel9 instead of rhel8.
1 parent f3d3cd1 commit a3df94e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/hostcrypt/static.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ package hostcrypt
55

66
import "fmt"
77

8-
const binaryInstructions = "To obtain a suitable binary, download the openshift-install-rhel8 archive from the client mirror, or extract the openshift-install-fips command from the release payload."
8+
const binaryInstructions = "To obtain a suitable binary, download the openshift-install-rhel9 archive from the client mirror, or extract the openshift-install-fips command from the release payload."
99

1010
func allowFIPSCluster() error {
1111
hostMsg := ""
1212
if fipsEnabled, err := hostFIPSEnabled(); err != nil || !fipsEnabled {
1313
hostMsg = " on a host with FIPS enabled"
1414
}
15-
return fmt.Errorf("use the FIPS-capable installer binary for RHEL 8%s.\n%s",
15+
return fmt.Errorf("use the FIPS-capable installer binary for RHEL 9%s.\n%s",
1616
hostMsg, binaryInstructions)
1717
}

0 commit comments

Comments
 (0)