I use Traefik as a reverse proxy to expose my application running on OpenShift. To expose the HTTPS service, which is configured as a route of TCP, I will need the following sample configuration in TOML format, [tcp.routers.dev-ocp410-https]
entryPoints = ["https"]
rule = "HostSNI(`oauth-openshift.apps.dev-ocp410.ibmcloud.io.cpak`,`console-openshift-console.apps.dev-ocp410.ibmcloud.io.cpak`,)"
service = "service-dev-ocp410-https"…