Fixed issue in langfuse deployment using Kubernetes#373
Open
nuwangeek wants to merge 50 commits intobuerokratt:wipfrom
Open
Fixed issue in langfuse deployment using Kubernetes#373nuwangeek wants to merge 50 commits intobuerokratt:wipfrom
nuwangeek wants to merge 50 commits intobuerokratt:wipfrom
Conversation
Get update from wip into llm-316
Get update from llm-316
Intent enrichment pipeline (buerokratt#319)
get update from wip into llm-304
Service layer validation in tool classifier (buerokratt#321)
Get update from wip
Pulling changes from BYK wip to LLM-Module WIP
Get update from wip into optimization/data-enrichment
…mance improvement
Get update from optimization/data-enrichment into optimization/vector-indexer
Optimize intent data enrichment and service classification (buerokratt#325)
Optimize first user query response generation time (buerokratt#326)
Get update from llm-309 before getting context generation workflow changes
Get update from llm-310 into llm/service-integration
Get update from llm-310
Context based response generation workflow (buerokratt#327)
Sync wip branches 3/18/2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request makes several important improvements to the RAG Module’s infrastructure and deployment configuration. The main changes include standardizing the naming of the PostgreSQL database service across all Docker Compose files, updating database connection references, initializing the Langfuse database automatically, and introducing new Kubernetes configuration files for Helm chart management and container registry setup. These updates enhance consistency, reliability, and ease of deployment in both local and Kubernetes environments.
Docker Compose & Database Configuration Updates
rag_search_dbtorag-search-dbin all Docker Compose files (docker-compose.yml,docker-compose-test.yml,docker-compose-ec2.yml). This includes updating all references, container names, dependency conditions, and connection strings to use the new naming convention. [1] [2] [3] [4] [5] [6]rag-search-dbinstead ofrag_search_db, ensuring consistency and preventing misconfigurations. [1] [2] [3] [4] [5]init-langfuse.sqlfile and executing it if the database does not exist. [1] [2] [3]Kubernetes & Helm Chart Enhancements
kubernetes/Chart.yamlto manage dependencies for all RAG Module components, improving modularity and deployment in Kubernetes environments.kubernetes/CONTAINER_REGISTRY_SETUP.md) to document the process for building and pushing container images, supporting easier onboarding and deployment.Environment Variable Adjustments
env.exampleto use the new database naming convention and connection string, reflecting the changes in Docker Compose and supporting seamless environment setup.These changes collectively improve the reliability and maintainability of the deployment process for both local and Kubernetes environments, making it easier to manage and scale the RAG Module infrastructure.