I am installing Flyte using Configure a single no...
# ask-ai
h
I am installing Flyte using Configure a single node Kubernetes cluster from "https://github.com/davidmirror-ops/flyte-the-hard-way/blob/main/docs/on-premises/single-node/001-configure-single-node-k8s.md" The problem is the certificate says Kubernetes Ingress Controller Fake Certificate even though I have followed instructions to set the certificate.
j
It seems like the issue might be related to the Kubernetes Ingress Controller using a default fake certificate instead of the one you intended to set. This can happen if the Ingress resource is not properly configured to use your TLS secret. To resolve this, ensure that your Ingress resource is correctly referencing the TLS secret that contains your certificate. You can check the
tls
section of your Ingress resource to verify that the
secretName
matches the name of your TLS secret. Additionally, make sure that the
hosts
field is correctly set to the domain name you are using. If you are using Helm to deploy Flyte, you might need to update the
values.yaml
file to include the correct
tls
configuration. According to this discussion, ensure that the
hosts
field is not null and is set to your Flyte FQDN. Would you like more detailed guidance on configuring the Ingress resource or updating the Helm values file? Sources: - this discussion 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.
h
yes please
a
@happy-train-67544 could you share your values file?