We are running an application on k8s cluster on GKE.
We are using an nginx-ingress-controller
as external load-balancer Service which is reachable on, let’s say, https://12.345.67.98 . We are facing an issue that when we directly access the load-balancer on mentioned URL, we get a certificate warning because a self-signed "Kubernetes Ingress Controller Fake Certificate" is used.
We only have Ingress objects that are mapping our domains (e.g. app.our-company.com) to Kubernetes services. The nginx load-balancer is a Kubernetes Service with load-balancer type. For SSL/TLS for our domains cert-manager
is used. There is no issue when accessing these domains, only when we directly access the load-balancer on the IP-Address.
Is there a way to somehow replace the certificate on the load-balancer, so it’s not using the default fake certificate anymore?
2
Answers
You need to define a secret with your CA signed certificate and the private key. These will have to be base64 encoded in the secret. You will then use this secret in the "tls" section of the ingress manifest.
Ensure that the certificate chain (cert -> intermediate CA -> root CA) is established in the certificate above.
References
You can override default SSL certificate during Ingress Controller helm installation.
Ref: https://github.com/kubernetes/ingress-nginx/blob/main/charts/ingress-nginx/values.yaml