Skip to content

Commit

Permalink
added more params
Browse files Browse the repository at this point in the history
  • Loading branch information
musoles committed Dec 24, 2024
1 parent 0ceafd8 commit 243eb70
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/litellm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.16
version: 0.1.17

# 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
Expand Down
2 changes: 2 additions & 0 deletions charts/litellm/templates/litellm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ spec:
value: {{ .Values.litellm.general_settings.database_name }} #{{ .Values.postgres.db_name }}
- name: DATABASE_USER
value: {{ .Values.litellm.general_settings.database_user }} #{{ .Values.postgres.db_user }}
- name: DATABASE_USERNAME
value: {{ .Values.litellm.general_settings.database_username }} #{{ .Values.postgres.db_user }}
- name: DATABASE_PASSWORD
value: {{ .Values.litellm.general_settings.database_password }} #{{ .Values.postgres.db_password }}
- name: DATABASE_PORT
Expand Down
3 changes: 2 additions & 1 deletion charts/litellm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ litellm:
general_settings:
master_key: sk-1234
salt_key: sk-1234567890
database_url: postgres-litellm-do-user-14127040-0.l.db.ondigitalocean.com
database_url: postgres://postgres-litellm-do-user-14127040-0.l.db.ondigitalocean.com:25060
database_port: 25060
database_user: doadmin
database_password: default
database_name: defaultdb
database_username: doadmin
database_connection_pool_limit: 0
database_connection_timeout: 0
allow_requests_on_db_unavailable: true
Expand Down

0 comments on commit 243eb70

Please sign in to comment.