Skip to content

Commit

Permalink
fix: fix librechat urls
Browse files Browse the repository at this point in the history
  • Loading branch information
muhlba91 committed Mar 13, 2024
1 parent 287cd81 commit 92f071c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions applications/librechat/librechat/extensions/configmap-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ metadata:
name: librechat-env
data:
# https://github.com/danny-avila/LibreChat/blob/main/.env.example
DOMAIN_CLIENT: ""
DOMAIN_SERVER: ""
DOMAIN_CLIENT: "gpt.home.muehlbachler.io"
DOMAIN_SERVER: "gpt.home.muehlbachler.io"
EMAIL_FROM: "[email protected]"
APP_TITLE: GPT Chat
ENDPOINTS: openAI,anthropic,gptPlugins
BAN_VIOLATIONS: "false"
ANTHROPIC_MODELS: claude-3-sonnet-20240229,claude-3-opus-20240229
Expand All @@ -21,14 +23,12 @@ data:
CONCURRENT_MESSAGE_MAX: "15"
LIMIT_MESSAGE_IP: "false"
ALLOW_EMAIL_LOGIN: "true"
ALLOW_REGISTRATION: "true" # FIXME: librechat - registration
ALLOW_REGISTRATION: "false"
ALLOW_SOCIAL_LOGIN: "true"
ALLOW_SOCIAL_REGISTRATION: "true"
OPENID_BUTTON_LABEL: "Login with SSO"
# OPENID_IMAGE_URL: ""
EMAIL_FROM: "[email protected]"
SESSION_EXPIRY: "1000 * 60 * 30" # 30 min
REFRESH_TOKEN_EXPIRY: "(1000 * 60 * 60 * 24) * 7" # 7 days
APP_TITLE: TuxChat
HELP_AND_FAQ_URL: "/"
CUSTOM_FOOTER: ""
10 changes: 5 additions & 5 deletions applications/librechat/librechat/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ controllers:
name: librechat-mongodb-svcbind-root
key: uri

resources: # FIXME: librechat - resources
resources:
requests:
cpu: 100m
memory: 288Mi
cpu: 20m
memory: 256Mi
limits:
cpu: 500m
cpu: 300m
memory: 384Mi

serviceAccount:
Expand All @@ -53,7 +53,7 @@ ingress:
cert-manager.io/cluster-issuer: cluster-issuer-home-muehlbachler-io
external-dns.alpha.kubernetes.io/provider: public
hosts:
- host: &domain tuxchat.home.muehlbachler.io
- host: &domain gpt.home.muehlbachler.io
paths:
- path: /
pathType: ImplementationSpecific
Expand Down
4 changes: 2 additions & 2 deletions applications/librechat/meilisearch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ persistence:

resources:
requests:
cpu: 25m
cpu: 10m
memory: 128Mi
limits:
cpu: 250m
cpu: 300m
memory: 256Mi
4 changes: 2 additions & 2 deletions applications/librechat/mongodb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ volumePermissions:
resources:
requests:
cpu: 150m
memory: 128Mi
memory: 192Mi
limits:
cpu: 300m
memory: 256Mi
memory: 384Mi

0 comments on commit 92f071c

Please sign in to comment.