-
Bug
-
Resolution: Done
-
Normal
-
rhos-18.0.10 FR 3
-
None
-
2
-
False
-
-
False
-
?
-
rhos-ops-platform-services-security
-
None
-
-
-
-
Low
IPA_SSH is defined twice in the documentation, one for ssh to a freeipa server, the other if you are using a container.
But the order does not make sense,
IPA_SSH="podman exec -ti freeipa-server"
is set after trying to locate the CA certificate and key.
It would make more sense to move the up to Prerequisites.
Step 1
IPA_SSH certutil -L -d /etc/pki/pki-tomcat/alias
Should be
$IPA_SSH certutil -L -d /etc/pki/pki-tomcat/alias
In the Prerequisites we say log into the freeipa server as root, but this not something that would normally be recommended.
It would probably be better to do something like this.
IPA_SSH="ssh -i <path_to_ssh_key> <admin user>@<freeipa-server-ip-address> sudo"