Deploying with Kubernetes and a Custom Certificate
The following example deploys FME Server with a custom certificate to a Kubernetes cluster. These steps assume you have created a certificate and private key.
- Upload the certificate to the cluster:
- Install FME server, setting the TLS certificate:
- Connect to the FME Server Web User Interface on http://localhost. For more information, see:
kubectl create secret tls fmeserver-tls-cert --key localhost.self.fmeserver.key --cert localhost.self.fmeserver.crt
Helm v2:
helm install -n fmeserver safesoftware/fmeserver-2019.0.0 --set fmeserver.image.tag=19260,
deployment.tlsSecretName=fmeserver-tls-cert,
deployment.hostname=localhost
Helm v3:
helm install fmeserver safesoftware/fmeserver-2019.0.0 --set fmeserver.image.tag=19260,
deployment.tlsSecretName=fmeserver-tls-cert,
deployment.hostname=localhost