API Developer Portal with SSL
The certificate file with extension .p12 is transferred to one of the Kubernetes Control Plane servers and moved/copied to /etc/ssl/certs directory.
While at the relevant address, the certificate file is uploaded to Kubernetes as secfret with the following command.
POWERSHELL
If you only have a .jks file, you can create a .p12 file from this file as follows. Then the previous step is applied.
Run the following code to get the alias definition of the certificate.
XML
Create .p12 file from .jks file with known alias definition.
XML
Variables that need to be defined:
Variable | Explanation |
---|---|
SSL_KEY_STORE | The path to the keystore containing the SSL certificate. In our example, we want Spring Boot to look for this in classpath. |
SSL_KEY_STORE_PASSWORD | The password used to access the keystore. |
SSL_KEY_STORE_TYPE | Type of keystore (Usage: PKCS12). |
SSL_KEY_ALIAS | Alias that identifies the key in the keystore. |
SSL_ENABLED | Enables the Spring Boot application to use the HTTPS protocol. |
SERVER_PORT | The port the server is listening on. 8443 is used instead of the default 8080. |
A sample deployment yaml file using certificate information would be as follows.
YML