Passthrough routing for 443 port not working
Version
openshfit3
Steps To Reproduce
-
Use below template
{
"kind": "Route",
"apiVersion": "v1",
"metadata": {
"name": "${SERVICE}-https",
"labels": {
"name": "${SERVICE}"
}
},
"spec": {
"to": {
"kind": "Service",
"name": "${SERVICE}-https"
},
"port":{
"targetPort":"443"
},
"tls":{
"termination": "passthrough"
}
}
-
[step 2]
Run service
and access using https://url
getting below exeption
Application is not available
The application is currently not serving requests at this endpoint. It may not have been started or is still starting.
With Ajax post on same server
Passthrough routing for 443 port not working
Version
openshfit3
Steps To Reproduce
Use below template
{
"kind": "Route",
"apiVersion": "v1",
"metadata": {
"name": "${SERVICE}-https",
"labels": {
"name": "${SERVICE}"
}
},
"spec": {
"to": {
"kind": "Service",
"name": "${SERVICE}-https"
},
"port":{
"targetPort":"443"
},
"tls":{
"termination": "passthrough"
}
}
[step 2]
Run service
and access using https://url
getting below exeption
Application is not available
The application is currently not serving requests at this endpoint. It may not have been started or is still starting.
With Ajax post on same server