You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, users can't create private routes (where route hosts end in .cluster.local which creates a route .svc.cluster.local). As is, it is necessary to go into keycloak authz and add .svc.cluster.local to perm-domains.
Resolution could include adding .svc.cluster.local to the default list of allowed_domains or otherwise modifying the function logic.
I have a note from a conversation with Aidan that the issue may be a misplaced if statement (should be else) following the if statement checking if it’s a valid local route, but I'm not soo sure about this.
The text was updated successfully, but these errors were encountered:
By default, users can't create private routes (where route hosts end in
.cluster.local
which creates a route.svc.cluster.local
). As is, it is necessary to go into keycloak authz and add.svc.cluster.local
toperm-domains
.The issue likely lies in
validate_hosts()
here -gwa-api/microservices/gatewayApi/v1/routes/gateway.py
Line 538 in 0e2ff4d
Resolution could include adding
.svc.cluster.local
to the default list ofallowed_domains
or otherwise modifying the function logic.I have a note from a conversation with Aidan that the issue may be a misplaced if statement (should be else) following the if statement checking if it’s a valid local route, but I'm not soo sure about this.
The text was updated successfully, but these errors were encountered: