During a cluster deployment, the Federal Information Processing Standards (FIPS) change is applied when the Red Hat Enterprise Linux CoreOS (RHCOS) machines are deployed in your cluster. For Red Hat Enterprise Linux (RHEL) machines, you must enable FIPS mode when you install the operating system on the machines that you plan to use as worker machines.
You can enable FIPS mode through the preferred method of install-config.yaml
and agent-config.yaml
:
-
You must set value of the
fips
field toTrue
in theinstall-config.yaml
file:Sample install-config.yaml.fileapiVersion: v1 baseDomain: test.example.com metadata: name: sno-cluster fips: True
-
Optional: If you are using the {ztp} manifests, you must set the value of
fips
asTrue
in theAgent-install.openshift.io/install-config-overrides
field in theagent-cluster-install.yaml
file:Sample agent-cluster-install.yaml fileapiVersion: extensions.hive.openshift.io/v1beta1 kind: AgentClusterInstall metadata: annotations: agent-install.openshift.io/install-config-overrides: '{"fips": True}' name: sno-cluster namespace: sno-cluster-test