doc: add Kubernetes deployment guide with Helm chart options#209
doc: add Kubernetes deployment guide with Helm chart options#209mberlofa wants to merge 2 commits intoFlowiseAI:mainfrom
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces a dedicated documentation page for Kubernetes deployment using Helm, replacing previous external links with a local guide. The new documentation details installation via HelmForge and Cowboysysop charts, covering standalone and queue modes, as well as ingress configuration. Feedback suggests using 'helm upgrade --install' for more robust deployment commands and improving the readability of external links with descriptive text.
| ``` | ||
|
|
||
| ```bash | ||
| helm install flowise helmforge/flowise -f values.yaml |
There was a problem hiding this comment.
The helm install command will fail if a release named flowise already exists (e.g., from following the initial installation steps). Using helm upgrade --install is more robust as it will either install a new release or upgrade an existing one, preventing potential errors for users.
| helm install flowise helmforge/flowise -f values.yaml | |
| helm upgrade --install flowise helmforge/flowise -f values.yaml |
| * Chart source: [github.com/helmforgedev/charts](https://github.com/helmforgedev/charts/tree/main/charts/flowise) | ||
| * ArtifactHub: [artifacthub.io/packages/helm/helmforge/flowise](https://artifacthub.io/packages/helm/helmforge/flowise) |
There was a problem hiding this comment.
For better readability and clarity, consider using more descriptive link texts instead of repeating parts of the URLs. This helps users understand the destination of the link at a glance.
| * Chart source: [github.com/helmforgedev/charts](https://github.com/helmforgedev/charts/tree/main/charts/flowise) | |
| * ArtifactHub: [artifacthub.io/packages/helm/helmforge/flowise](https://artifacthub.io/packages/helm/helmforge/flowise) | |
| * Chart source: [HelmForge Charts on GitHub](https://github.com/helmforgedev/charts/tree/main/charts/flowise) | |
| * ArtifactHub: [Flowise chart on ArtifactHub](https://artifacthub.io/packages/helm/helmforge/flowise) |
Summary
Adds a dedicated Kubernetes deployment page to the self-hosting documentation, replacing the external ArtifactHub link with a local guide covering available community Helm charts.
Related to FlowiseAI/Flowise#6111
Changes
en/configuration/deployment/kubernetes.mden/configuration/deployment/README.md— changed Kubernetes link from external ArtifactHub URL to localkubernetes.mden/SUMMARY.md— same link update for sidebar navigationNotes