BorisPolonsky / dify-helm

Deploy langgenious/dify, an LLM based app on kubernetes with helm chart
MIT License
130 stars 29 forks source link

How do you define the ingress paths if the proxy is not enabled? #75

Closed Anvesh-Gummalas closed 1 month ago

Anvesh-Gummalas commented 1 month ago

Hello, please advise on the ingress paths to the respective backend services in case the proxy container is not enabled. Thanks.

BorisPolonsky commented 1 month ago

Hello there. Ingress defined by this chart routes external traffic to proxy for simplicity purpose. If you wish to bypass proxy, it's advised to deploy and manage ingress and corresponding routing rules separately. In this way the app maintainers shall supervise dify itself and leave external traffic management to the cluster administrators.

Anvesh-Gummalas commented 1 month ago

Hello. Used external ingress and declared the paths - /console/api, /api, /v1, /files, / to respective api and web services as found in the nginx proxy config. Thanks