0👍
I was able to find the root cause. In ingress instead of
- backend:
service:
name: vue-portal-service
port:
number: 80
path: /
pathType: ImplementationSpecific
I have put /* in path:
- backend:
service:
name: vue-portal-service
port:
number: 80
path: /*
pathType: ImplementationSpecific
And everything start to work as expected.
Source:stackexchange.com