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
{{ message }}
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
Hello all,
On openshift platform, monocular is not working. We could not so use Monocular on it.
We think this problem is caused by a dependency too much important with nginx-ingress.
We think to have find the problem in monocular, it could be interesting to investigate :
frontend send requests on "/chartsvc/v1/*"
backend wait receive requests on "/v1/*"
Prefix of the back is only "/v1" where I think it must be "/chartsvc/v1" to don't create an dependency with nginx-ingress
Hello all,
On openshift platform, monocular is not working. We could not so use Monocular on it.
We think this problem is caused by a dependency too much important with nginx-ingress.
We think to have find the problem in monocular, it could be interesting to investigate :
Prefix of the back is only "/v1" where I think it must be "/chartsvc/v1" to don't create an dependency with nginx-ingress
Source code frontend: frontend/src/app/shared/services/charts.service.ts
l23: this.hostname =
${config.backendHostname}/chartsvc
;Source code backend: cmd/chartsvc/main.go
l31: const pathPrefix = "/v1"
Potential fix:
Source code backend: cmd/chartsvc/main.go
l31: const pathPrefix = "/chartsvc/v1"
Is someone have find an issue / workaround about it ?
Are you agree with this approach ?
Best regards,
The text was updated successfully, but these errors were encountered: