helm chart help for Novu
Hi everyone
I got error whole using helm chart installation on windows system
https://github.com/novuhq/novu/issues/4726
Attaching the GitHub issue link
GitHub
🐛 Bug Report: Helm chart not working · Issue #4726 · novuhq/novu
📜 Description D:\novu-next\docker\kubernetes\helm>helm version version.BuildInfo{Version:"v3.13.1", GitCommit:"3547a4b5bf5edb5478ce352e18858d8a552a4110", GitTreeState:"c...
5 Replies
@aay we do not officially support this helm chart, and has been contributed by the community.
We have had some users use it successfully recently, I would assume that you are setting the values incorrectly.
https://docs.novu.co/self-hosting-novu/kubernetes
@zacclifton
Can you connect me with some who worked on context_path variable available in env file
I personally have been unable to make a working build using injectable context_path variables
I was the one that built the feature in novu what are the issues that you are having?
@Zac Clifton
My proxy nginx ingress path for
svc.domain.com/api
Rewrite path /
This request forwarded to
localhost:3000/v1
My proxy nginx ingress path for
svc.domain.com/web
Rewrite path /
This request forwarded to
localhost:4200/
but as it's frontend , static files are loaded from localhost:4200/env-config.js
Which is returned to
svc.domain.com/env-config.js
This isn't correct url for reverse proxy
So I used context path variable for web
/web
Which should have served files from
localhost:4200/web/env-config.js
To
svc.domain.com/web/env-config.js
And no rewrite path for nginx ingress
But it didn't fixed the issue
If you have used Jaeger tracing, they provide a base_url variable for base path, that can rewrite the static file url paths which helps in resolving those files
so the base_url was already take so I named it GLOBAL_CONTEXT_PATH which may be the confusion.
did you use this to set the base path for novu? it does nood to be set on every service
https://github.com/novuhq/novu/pull/1285
GitHub
feat: Add Global and Service Specific Context Path Capibility to al...
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
I have added support for context path separation of each service on the same URL.
This will allow each service to be...