Expose https services #516
-
Hello folks, The question is pretty simple: Is there a way to expose https service. Would that be possible to apply an ingress similar to
I might be missing something, any other way to expose https services would be welcome :) I'm writing a demo on kube-oidc-proxy here (work in progress) : Thank you for your help |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @Smana, how did you create your cluster? |
Beta Was this translation helpful? Give feedback.
-
Oh yes, that works indeed. I don't know why my previous tests were failing. Anyway, thank you! |
Beta Was this translation helpful? Give feedback.
Hi @Smana, how did you create your cluster?
You can "just" use
k3d cluster create --port 6443:443@loadbalancer
and then access your service viahttps://your.service.com:6443
(given that you have some way of resolvingyour.service.com
to localhost).Should be basically the same as for http... what does
curl
output when you use--verbose
?