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
There is an issue with the helm chart for Ingress resources. We are using path based routing for multiple applications with the same host and the way Devlake helm chart creates ingress resource is based on the helm values file and the path is picked from Prefix value of helm chart. Based on how our ingresses are setup, we are supposed to give devlake as prefix. But this option doesn't seem to working since the application is looking for assets in / and throwing a 404 error in logs. So basically I am getting a blank page when I try to access https:///devlake.
helm values file
If we use prefix as / it works just fine but we are not hosting anything at the root of the url. I think this is because of the base_href path is not mentioned in index.html.
Having an option to overwrite the base_path would be ideal in this case where one can put any custom path based on their environments.
The text was updated successfully, but these errors were encountered:
hi @sais8 , I wonder even if you add rewrite nginx.ingress.kubernetes.io/rewrite-target: /$2, config-ui is still 404?
In my opinion, as per your ingress resource, only grafana would get 404
@ZhangNing10 We use Traefik and not nginx. So I'd really prefer the chart to support this instead of having to write extra rules for the ingress or IngressRoute.
There is an issue with the helm chart for Ingress resources. We are using path based routing for multiple applications with the same host and the way Devlake helm chart creates ingress resource is based on the helm values file and the path is picked from
Prefix
value of helm chart. Based on how our ingresses are setup, we are supposed to givedevlake
as prefix. But this option doesn't seem to working since the application is looking for assets in/
and throwing a 404 error in logs. So basically I am getting a blank page when I try to access https:///devlake.helm values file
Ingress logs
Ingress resource
If we use prefix as
/
it works just fine but we are not hosting anything at the root of the url. I think this is because of the base_href path is not mentioned inindex.html
.Having an option to overwrite the base_path would be ideal in this case where one can put any custom path based on their environments.
The text was updated successfully, but these errors were encountered: