FME Flow: 2026.2
Deploying with Kubernetes and a Trusted Certificate
To deploy FME Flow with a trusted certificate to a Kubernetes cluster, you can run cert-manager in your cluster, which issues the necessary certificates.
Alternatively, you can deploy with a certificate and private key that are already generated.
Use the deployment.certManager.issuerName and deployment.certManager.issuerType parameters in the FME Flow Helm chart to add annotations to the ingress. The annotations instruct cert-manager to issue a certificate for that ingress.
- Upload the certificate to the cluster. For example:
- Install FME Flow, setting the TLS certificate:
kubectl create secret tls fmeflow-tls-cert --key fmeflow.example.com.key --cert fmeflow.example.com.crt
Example (Helm v3):
helm install fmeflow safesoftware/fmeflow --set fmeflow.image.tag=2024.0,
deployment.tlsSecretName=fmeflow-tls-cert,
deployment.hostname=fmeflow.example.com
When finished, connect to the FME Flow Web User Interface. For example: https://fmeflow.example.com/. For more information, see: