Private Certificate Authorities
- Updated2025-11-26
- 2 minute(s) read
If you are using a private certificate authority (CA), you must configure SystemLink Enterprise to use the private CA to establish trust.
- Signing certificates used for SystemLink Enterprise TLS
termination.
The public certificate chain used for TLS termination at the API ingress must be deployed as a secret to the Kubernetes namespace for SystemLink Enterprise. Deploying the public certificate chain allows SystemLink Enterprise to do the following:
- Call SystemLink APIs. For example, you run a Jupyter Notebook that calls the Test Monitor API.
- Automatically deploy the private CA bundle to testers that you connect.
- Use TLS for communication to external dependencies of SystemLink Enterprise. External dependencies can include
MongoDB, PostgreSQL, and so on.
The public certificate chain must be referenced in global.trustedCertificatesSecrets so SystemLink Enterprise services can add this trust chain to their container root trust store.
Configuring Private Certificate Authorities
Deploy a copy of the public certificate trust chain for the private CA before deploying SystemLink Enterprise.
-
Deploy the public CA as a Kubernetes secret in the same namespace used by SystemLink Enterprise.
Refer to the following example.
kubectl --namespace namespace create secret generic my-ca-certificate --from-file=cert=path/to/my-ca.crt
- Open systemlink-values.yaml.
-
Set the global.trustedCertificatesSecrets secret. Refer to the
following example.
trustedCertificatesSecrets: - secretName: "my-ca-certificate" key: "certificate"Configuring global.trustedCertificatesSecrets allows SystemLink Enterprise to establish trust with the CA and communicate with resources that are secured with TLS. - Optional:
Configure your clients to trust the CA so the clients can communicate with SystemLink Enterprise.
-
Set the global.apiHostCertificateSecret secret.
apiHostCertificateSecret: - secretName: "my-ca-certificate" key: "certificate" - Set global.deployApiHostCertificateToSystems to true.
-
Set the global.apiHostCertificateSecret secret.
- Save and close systemlink-values.yaml.
- To deploy the new configuration, run the Helm upgrade command.