[PR #4484] [MERGED] Adding AnythingLLM Helm Chart #4645

Closed
opened 2026-02-22 18:36:15 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4484
Author: @sculley
Created: 10/3/2025
Status: Merged
Merged: 10/3/2025
Merged by: @timothycarambat

Base: masterHead: feature/helm-chart


📝 Commits (1)

📊 Changes

15 files changed (+838 additions, -0 deletions)

View changed files

cloud-deployments/helm/charts/anythingllm/.helmignore (+23 -0)
cloud-deployments/helm/charts/anythingllm/Chart.yaml (+7 -0)
cloud-deployments/helm/charts/anythingllm/README.md (+149 -0)
cloud-deployments/helm/charts/anythingllm/README.md.gotmpl (+103 -0)
cloud-deployments/helm/charts/anythingllm/templates/NOTES.txt (+28 -0)
cloud-deployments/helm/charts/anythingllm/templates/_helpers.tpl (+62 -0)
cloud-deployments/helm/charts/anythingllm/templates/configmap.yaml (+10 -0)
cloud-deployments/helm/charts/anythingllm/templates/deployment.yaml (+83 -0)
cloud-deployments/helm/charts/anythingllm/templates/extra-objects.yaml (+4 -0)
cloud-deployments/helm/charts/anythingllm/templates/ingress.yaml (+61 -0)
cloud-deployments/helm/charts/anythingllm/templates/pvc.yaml (+33 -0)
cloud-deployments/helm/charts/anythingllm/templates/service.yaml (+15 -0)
cloud-deployments/helm/charts/anythingllm/templates/serviceaccount.yaml (+13 -0)
cloud-deployments/helm/charts/anythingllm/templates/tests/test-connection.yaml (+16 -0)
cloud-deployments/helm/charts/anythingllm/values.yaml (+231 -0)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

N/A

What is in this change?

This pull request introduces an official Helm chart for deploying AnythingLLM on Kubernetes. It provides all the necessary templates and documentation for a production-ready deployment, including configuration guidance, secret management, persistent storage, and service exposure. The chart is designed for flexibility, security, and ease of use, enabling users to deploy AnythingLLM with best practices for Kubernetes environments.

Documentation and usability enhancements:

  • Included a comprehensive README.md with usage instructions, a configuration values table, and deployment tips.

Additional Information

Ideally, a Helm Repository should be set up in this repository so users can install the Helm chart using standard tooling without needing to download and run it locally. This requires some additional changes that are not in scope for this change and would require setting up GitHub Pages. I am planning to submit a new PR with the changes necessary + details.

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/4484 **Author:** [@sculley](https://github.com/sculley) **Created:** 10/3/2025 **Status:** ✅ Merged **Merged:** 10/3/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `feature/helm-chart` --- ### 📝 Commits (1) - [`f64c5b1`](https://github.com/Mintplex-Labs/anything-llm/commit/f64c5b1e25ced8aa0fd29cd9382620ce5dbba3f9) feat: adding helm chart ### 📊 Changes **15 files changed** (+838 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `cloud-deployments/helm/charts/anythingllm/.helmignore` (+23 -0) ➕ `cloud-deployments/helm/charts/anythingllm/Chart.yaml` (+7 -0) ➕ `cloud-deployments/helm/charts/anythingllm/README.md` (+149 -0) ➕ `cloud-deployments/helm/charts/anythingllm/README.md.gotmpl` (+103 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/NOTES.txt` (+28 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/_helpers.tpl` (+62 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/configmap.yaml` (+10 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/deployment.yaml` (+83 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/extra-objects.yaml` (+4 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/ingress.yaml` (+61 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/pvc.yaml` (+33 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/service.yaml` (+15 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/serviceaccount.yaml` (+13 -0) ➕ `cloud-deployments/helm/charts/anythingllm/templates/tests/test-connection.yaml` (+16 -0) ➕ `cloud-deployments/helm/charts/anythingllm/values.yaml` (+231 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues N/A ### What is in this change? This pull request introduces an official Helm chart for deploying AnythingLLM on Kubernetes. It provides all the necessary templates and documentation for a production-ready deployment, including configuration guidance, secret management, persistent storage, and service exposure. The chart is designed for flexibility, security, and ease of use, enabling users to deploy AnythingLLM with best practices for Kubernetes environments. **Documentation and usability enhancements:** * Included a comprehensive `README.md` with usage instructions, a configuration values table, and deployment tips. ### Additional Information Ideally, a Helm Repository should be set up in this repository so users can install the Helm chart using standard tooling without needing to download and run it locally. This requires some additional changes that are not in scope for this change and would require setting up GitHub Pages. I am planning to submit a new PR with the changes necessary + details. ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:36:15 -05:00
yindo closed this issue 2026-02-22 18:36:15 -05:00
yindo changed title from [PR #4484] Adding AnythingLLM Helm Chart to [PR #4484] [MERGED] Adding AnythingLLM Helm Chart 2026-06-05 15:19:36 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4645