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
I am facing an issue while adding the LiveKit server and Egress to my project. Their Helm charts do not respect the specified namespace and end up running in the default namespace, which is not what I want.
Here is an example of how I usually declare external charts from Bitnami, such as PostgreSQL:
With the Bitnami charts, everything runs properly in the specified my-namespace namespace. Bitnami charts allow passing a namespace value in the template metadata, for example:
When reproducing the same approach with LiveKit charts, the LiveKit server and Egress charts do not seem to respect the specified namespace. They end up running in the default namespace.
Is the namespace attribute missing from the charts' metdata? for example:
// livekit-helm/livekit-server/templates/secret.yaml
...
metadata:
name: {{ include "livekit-server.fullname" . }}
labels:
{{- include "livekit-server.labels" . | nindent 4 }}
...
Am I missing something in my current setup? Please find my current Helmfile under this repository.
Should we add a namespace attribute to the LiveKit server and Egress charts? I would be happy to propose a PR to address this issue.
The text was updated successfully, but these errors were encountered:
I am facing an issue while adding the LiveKit server and Egress to my project. Their Helm charts do not respect the specified namespace and end up running in the default namespace, which is not what I want.
Here is an example of how I usually declare external charts from Bitnami, such as PostgreSQL:
I run the following command to deploy:
With the Bitnami charts, everything runs properly in the specified
my-namespace
namespace. Bitnami charts allow passing a namespace value in the template metadata, for example:When reproducing the same approach with LiveKit charts, the LiveKit server and Egress charts do not seem to respect the specified namespace. They end up running in the default namespace.
Is the namespace attribute missing from the charts' metdata? for example:
Am I missing something in my current setup? Please find my current Helmfile under this repository.
Should we add a namespace attribute to the LiveKit server and Egress charts? I would be happy to propose a PR to address this issue.
The text was updated successfully, but these errors were encountered: