Open narfeta opened 2 months ago
Thanks for bringing it to our attention, @narfeta. we will take a look.
Hey @narfeta, can you share your VirtualService configuration yaml?
sure, let me know if you need any other information.
apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
name: odigos-ui
namespace: odigos-system
spec:
gateways:
- default/gtw-priv-https
hosts:
- odigos.mydomain.com
http:
- name: odigos-ui
route:
- destination:
host: ui
port:
number: 3000
it could help to explicitly define a rewrite rule to ensure URLs are correctly formatted when passed to the destination service. this ensures that no extra slashes are added or removed, meaning it keeps the URI path exactly as it is without modification.
http:
- name: odigos-ui
match:
- uri:
prefix: / # Match all paths
rewrite:
uri: / # Ensure no slashes are stripped or incorrectly modified
route:
- destination:
host: ui
port:
number: 3000
@narfeta let me know if this helps :)
Sadly no :( the problem continues.
Thank you for the time to look into this.
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days.
Describe the bug Some image href links are not set correctly. In my case, when I use a VirtualService to access the service, the images are not rendering properly. As you can see in the screenshot, a
/
is missing from thehttps://
To Reproduce Steps to reproduce the behavior:
Expected behavior Render images from destinations
Screenshots