diff --git a/helm/librechat/Chart.yaml b/helm/librechat/Chart.yaml index c158a8cb77..a7a26d1465 100755 --- a/helm/librechat/Chart.yaml +++ b/helm/librechat/Chart.yaml @@ -29,7 +29,7 @@ home: https://www.librechat.ai dependencies: - name: mongodb - version: "16.3.0" + version: "16.5.45" condition: mongodb.enabled repository: "https://charts.bitnami.com/bitnami" - name: meilisearch diff --git a/helm/librechat/templates/deployment.yaml b/helm/librechat/templates/deployment.yaml index 492edafdb9..ad56c60d28 100755 --- a/helm/librechat/templates/deployment.yaml +++ b/helm/librechat/templates/deployment.yaml @@ -41,7 +41,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http - containerPort: {{ .Values.service.port }} + containerPort: {{ .Values.service.containerPort | default .Values.service.port }} protocol: TCP lifecycle: {{- toYaml .Values.lifecycle | nindent 12 }} diff --git a/helm/librechat/values.yaml b/helm/librechat/values.yaml index f290766d1b..fdc92e5c6a 100755 --- a/helm/librechat/values.yaml +++ b/helm/librechat/values.yaml @@ -150,8 +150,10 @@ securityContext: runAsUser: 1000 service: - type: ClusterIP + type: ClusterIP # LoadBalancer, NodePort, ClusterIP port: 3080 + targetPort: 3080 + containerPort: 3080 annotations: {} ingress: @@ -193,11 +195,11 @@ autoscaling: livenessProbe: httpGet: path: /health - port: http + port: 3080 readinessProbe: httpGet: path: /health - port: http + port: 3080 # Additional volumes on the output Deployment definition. volumes: []