Hide Forgot
Title: Creating a Matching Certificate https://access.redhat.com/site/documentation/en-US/OpenShift_Enterprise/1/html-single/Deployment_Guide/index.html#sect-SSL_Certificates Describe the issue: The openssl command here is outright missing a line and will not work. Also there are some other adjustments needed. Suggestions for improvement: It should read like the OSE 2.0 docs at https://access.redhat.com/site/documentation/en-US/OpenShift_Enterprise/2/html-single/Deployment_Guide/index.html#sect-SSL_Certificates
Actually this and the 2.0 equivalent should read the same, but without the leading > marks: --- # cat << EOF | openssl req -new -rand /dev/urandom \ -newkey rsa:2048 -nodes -keyout /etc/pki/tls/private/localhost.key \ -x509 -days 3650 \ -out /etc/pki/tls/certs/localhost.crt 2> /dev/null XX SomeState SomeCity SomeOrganization SomeOrganizationalUnit *.$domain root@$domain EOF --- Enables wholesale cut and paste. Granted, they may not want to cut and paste this as-is, but at least it will give them a cert with the right domain if they do.
Edited out the leading > marks, and made the topic for 2.0 and 1.2 match. Made sure the command matched the one in the initial comment above. This all seems straight-forward. Unless you have anything else, Luke, I'm going to put this BZ onto QA.
Looks good, thanks!