Skip to content

Commit 1d11587

Browse files
committed
completed renaming in deployment scripts and documentation from RAG-Module to LLM-Module
1 parent d98e3b1 commit 1d11587

12 files changed

Lines changed: 732 additions & 756 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This project uses **uv** for Python packaging and virtual environments. Python i
1111
Clone the repository and navigate to the project directory.
1212

1313
```bash
14-
cd RAG-Module
14+
cd LLM-Module
1515
```
1616

1717
### Step 2: Install uv

docs/VAULT_SECURITY_ARCHITECTURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
This document provides a technical deep dive into the HashiCorp Vault security architecture implemented in the RAG-Module. The design follows a defense-in-depth strategy with multiple security layers to protect sensitive credentials used by LLM providers (AWS Bedrock, Azure OpenAI) and embedding services.
5+
This document provides a technical deep dive into the HashiCorp Vault security architecture implemented in the LLM-Module. The design follows a defense-in-depth strategy with multiple security layers to protect sensitive credentials used by LLM providers (AWS Bedrock, Azure OpenAI) and embedding services.
66

77
### Security Principles
88

@@ -1317,4 +1317,4 @@ The Vault security architecture implements industry best practices for secrets m
13171317
**Audit Capability**: Full request logging available
13181318
**Defense in Depth**: Multiple security layers prevent single point of failure
13191319

1320-
This architecture provides a secure foundation for managing sensitive credentials in the RAG-Module while maintaining operational simplicity and developer productivity.
1320+
This architecture provides a secure foundation for managing sensitive credentials in the LLM-Module while maintaining operational simplicity and developer productivity.

kubernetes/charts/CronManager/templates/deployment-byk-cronmanager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
- sh
4141
- -c
4242
- |
43-
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/RAG-Module /tmp/rag &&
43+
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/LLM-Module /tmp/rag &&
4444
4545
mkdir -p /app/src/vector_indexer &&
4646
mkdir -p /app/scripts &&

kubernetes/charts/DataMapper/templates/deployment-byk-data-mapper.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
- sh
3030
- -c
3131
- |
32-
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/RAG-Module /tmp/rag &&
32+
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/LLM-Module /tmp/rag &&
3333
3434
# mkdir -p /workspace/app/views/rag-search &&
3535
mkdir -p /workspace/app/lib &&

kubernetes/charts/GUI/templates/ingress-byk-gui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: networking.k8s.io/v1
22
kind: Ingress
33
metadata:
44
name: gui-ingress
5-
namespace: rag-module
5+
namespace: llm-module
66
annotations:
77
kubernetes.io/ingress.class: nginx
88
spec:

kubernetes/charts/Liquibase/templates/liquibase-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
- sh
3131
- -c
3232
- |
33-
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/RAG-Module /tmp/rag &&
33+
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/LLM-Module /tmp/rag &&
3434
3535
cp -r /tmp/rag/DSL/Liquibase/* /liquibase-files
3636
containers:

kubernetes/charts/Resql/templates/deployment-byk-resql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- -c
3232
- |
3333
git clone --single-branch --depth 1 --branch wip \
34-
https://github.com/rootcodelabs/RAG-Module /tmp/rag &&
34+
https://github.com/rootcodelabs/LLM-Module /tmp/rag &&
3535
3636
cp -r /tmp/rag/DSL/Resql/* /DSL/
3737

kubernetes/charts/Ruuter-Private/templates/deployment-byk-ruuter-private.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
- sh
3030
- -c
3131
- |
32-
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/RAG-Module /tmp/rag &&
32+
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/LLM-Module /tmp/rag &&
3333
3434
cp -r /tmp/rag/DSL/Ruuter.private/* /DSL/
3535
containers:

kubernetes/charts/Ruuter-Public/templates/deployment-byk-ruuter-public.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
- sh
3030
- -c
3131
- |
32-
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/RAG-Module /tmp/rag &&
32+
git clone --single-branch --depth 1 --branch wip https://github.com/rootcodelabs/LLM-Module /tmp/rag &&
3333
3434
cp -r /tmp/rag/DSL/Ruuter.public/* /DSL/
3535
containers:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "rag-module"
2+
name = "LLM-Module"
33
version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"

0 commit comments

Comments
 (0)