
Change-Id: I99901c32fc4e319bf62a7f11fc4774c964f54736 Signed-off-by: Ngairangbam Mili <ngairangbam.mili@windriver.com>
4.1 KiB
Install REST API and Horizon Certificate
For secure communications, HTTPS should be enabled for OpenStack REST API and Horizon endpoints by configuring a certificate for these endpoints.
Important
It is recommended to do this before applying -openstack. If you decide to configure the Rest API and Horizon certificates after the -openstack application is already applied, wait until all endpoints are automatically updated and fully configured.
To check if all endpoints have been updated and fully configured:
Run the following command to list the OpenStack endpoints:
~(keystone_admin)$ openstack endpoint list
Verify that the updated endpoints are showing the new domain name. Each service endpoint (e.g., Keystone, Glance, Nova) should reflect the domain specified in the
endpoint_domain
parameter.Additionally, review the status of the Kubernetes pods to ensure that there are no pending pods.
~(keystone_admin)$ kubectl -n openstack get pods | grep -v Completed | grep -v Running
Update the Domain Name:
The domain must be added to the service-parameter openstack. For details, see
Update the Domain Name <update-the-domain-name>
.~(keystone_admin)$ system service-parameter-add openstack Helm endpoint_domain=west2.us.example.com +-------------+--------------------------------------+ | Property | Value | +-------------+--------------------------------------+ | uuid | 0459ede4-85e7-4767-aca9-d29e84f38bd4 | | service | openstack | | section | Helm | | name | endpoint_domain | | value | west2.us.example.com | | personality | None | | resource | None | +-------------+--------------------------------------+ ~(keystone_admin)$ system service-parameter-apply openstack Applying openstack service parameters
Obtain a certificate:
Obtain an Intermediate or Root -signed certificate and key from a trusted Intermediate or Root . The OpenStack certificate should be created with a wildcard .
For example:
X509v3 extensions: X509v3 Subject Alternative Name: DNS:*.west2.us.example.com
Put the encoded versions of the OpenStack certificate, key, and Root certificate into separate files (e.g.
openstack-cert.crt
,openstack-cert.key
andopenstak-ca-cert.crt
), and copy the files to the controller host. (e.g. /var/opt/openstack/certs/openstack-cert.crt, /var/opt/openstack/certs/openstack-cert.key, and /var/opt/openstack/certs/openstack-ca-cert.crt)Create a Helm overrides file to define the paths to the certificate, key, and Root certificate.
cat << EOF > openstack-cert-overrides.yaml openstackcertificateFile: /var/opt/openstack/certs/openstack-cert.crt openstackcertificateKeyFile: /var/opt/openstack/certs/openstack-cert.key openstackcertificateCAFile: /var/opt/openstack/certs/openstack-ca-cert.crt EOF
~(keystone_admin)$ system helm-override-update -openstack clients openstack --reuse-values --values openstack-cert-overrides.yaml
Apply the updated Helm overrides to the OpenStack application.
~(keystone_admin)$ system application-apply -openstack
Note
Ensure that port 443 is open in firewall. For details see .