From 5f321b07668610ddaa0a56d435c5426a32e9f045 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 09:36:26 +0000 Subject: [PATCH 1/6] Update Helm release mongodb to v15.6.18 --- charts/librechat/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/librechat/Chart.yaml b/charts/librechat/Chart.yaml index 742efcb..9db5400 100644 --- a/charts/librechat/Chart.yaml +++ b/charts/librechat/Chart.yaml @@ -14,7 +14,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.4.4 +version: 1.5.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to @@ -28,7 +28,7 @@ home: https://blue-atlas.de dependencies: - name: mongodb - version: "15.6.6" + version: "15.6.18" condition: mongodb.enabled repository: "https://charts.bitnami.com/bitnami" - name: meilisearch From 75dd8529862ce2c9222feb6408a16d65030e58c4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 08:32:13 +0000 Subject: [PATCH 2/6] Update Helm release postgresql to v15.5.21 --- charts/librechat-rag-api/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/librechat-rag-api/Chart.yaml b/charts/librechat-rag-api/Chart.yaml index f255553..00b04dc 100644 --- a/charts/librechat-rag-api/Chart.yaml +++ b/charts/librechat-rag-api/Chart.yaml @@ -14,7 +14,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.4 +version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to @@ -28,6 +28,6 @@ home: https://blue-atlas.de dependencies: - name: postgresql - version: "15.5.5" + version: "15.5.21" condition: postgresql.enabled repository: https://charts.bitnami.com/bitnami \ No newline at end of file From 6db483c52be7ffc10ccc8aa7a300fd584346c395 Mon Sep 17 00:00:00 2001 From: hofq Date: Wed, 14 Aug 2024 12:03:56 +0200 Subject: [PATCH 3/6] Add Annotations to Service --- charts/librechat/templates/service.yaml | 2 ++ charts/librechat/values.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/charts/librechat/templates/service.yaml b/charts/librechat/templates/service.yaml index 7f60acc..ccf6ae2 100644 --- a/charts/librechat/templates/service.yaml +++ b/charts/librechat/templates/service.yaml @@ -4,6 +4,8 @@ metadata: name: {{ include "librechat.fullname" . }} labels: {{- include "librechat.labels" . | nindent 4 }} + annotations: + {{ .Values.service.annotations | toYaml | indent 4 }} spec: type: {{ .Values.service.type }} ports: diff --git a/charts/librechat/values.yaml b/charts/librechat/values.yaml index 48644c6..3f00de4 100644 --- a/charts/librechat/values.yaml +++ b/charts/librechat/values.yaml @@ -158,6 +158,7 @@ securityContext: service: type: ClusterIP port: 3080 + annotations: {} ingress: enabled: true From 86cd5bc4aac5abf40f37dafe9ff54d9ae2a2206b Mon Sep 17 00:00:00 2001 From: hofq Date: Wed, 14 Aug 2024 12:14:54 +0200 Subject: [PATCH 4/6] add annotations to rag-api service also and fix tag --- charts/librechat-rag-api/Chart.yaml | 2 +- charts/librechat-rag-api/templates/service.yaml | 2 ++ charts/librechat-rag-api/values.yaml | 5 ++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/charts/librechat-rag-api/Chart.yaml b/charts/librechat-rag-api/Chart.yaml index f255553..52fda52 100644 --- a/charts/librechat-rag-api/Chart.yaml +++ b/charts/librechat-rag-api/Chart.yaml @@ -14,7 +14,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.4 +version: 0.1.5 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/librechat-rag-api/templates/service.yaml b/charts/librechat-rag-api/templates/service.yaml index 6740634..b3d89c6 100644 --- a/charts/librechat-rag-api/templates/service.yaml +++ b/charts/librechat-rag-api/templates/service.yaml @@ -4,6 +4,8 @@ metadata: name: {{ include "rag.fullname" . }} labels: {{- include "rag.labels" . | nindent 4 }} + annotations: + {{ .Values.service.annotations | toYaml | indent 4 }} spec: type: {{ .Values.service.type }} ports: diff --git a/charts/librechat-rag-api/values.yaml b/charts/librechat-rag-api/values.yaml index 31d85ba..15b3d87 100644 --- a/charts/librechat-rag-api/values.yaml +++ b/charts/librechat-rag-api/values.yaml @@ -2,15 +2,13 @@ # provide context-aware responses based on user-uploaded files rag: enabled: true - # Currently only lite is supported. This allows leveraging RAGs from Remote Endpoint like azure or - mode: lite existingSecret: '' configEnv: DB_PORT: '5432' EMBEDDINGS_PROVIDER: openai image: - repository: danny-avila/librechat-rag-api-dev # -lite will be added if mode is lite + repository: danny-avila/librechat-rag-api-dev-lite # there is rag-api-dev and rag-api-dev-lite. currently only lite is docuimented registry: ghcr.io pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. @@ -51,6 +49,7 @@ securityContext: {} service: type: ClusterIP port: 8000 + annotations: {} resources: {} From 605054a49168ae5766152ce387979f5a27f1426a Mon Sep 17 00:00:00 2001 From: hofq Date: Wed, 14 Aug 2024 12:23:03 +0200 Subject: [PATCH 5/6] #22 bump librechat --- charts/librechat/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/librechat/Chart.yaml b/charts/librechat/Chart.yaml index 9db5400..178e2ae 100644 --- a/charts/librechat/Chart.yaml +++ b/charts/librechat/Chart.yaml @@ -22,7 +22,7 @@ version: 1.5.0 # It is recommended to use it with quotes. # renovate: image=ghcr.io/danny-avila/librechat -appVersion: "v0.7.3-rc1" +appVersion: "v0.7.4" home: https://blue-atlas.de From 9040139da04b43235ddd7f7d3204587c297666f3 Mon Sep 17 00:00:00 2001 From: hofq Date: Wed, 14 Aug 2024 12:27:42 +0200 Subject: [PATCH 6/6] Update deps to subchart --- charts/librechat/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/librechat/Chart.yaml b/charts/librechat/Chart.yaml index 178e2ae..cd04410 100644 --- a/charts/librechat/Chart.yaml +++ b/charts/librechat/Chart.yaml @@ -36,6 +36,6 @@ dependencies: condition: meilisearch.enabled repository: "https://meilisearch.github.io/meilisearch-kubernetes" - name: librechat-rag-api - version: "0.1.4" + version: "0.1.5" condition: librechat-rag-api.enabled repository: file://../librechat-rag-api #"https://charts.blue-atlas.de"