mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-09 22:31:41 +00:00
docs: fix config file description in k8s deployment (#12230)
Signed-off-by: Yuichiro Utsumi <utsumi.yuichiro@fujitsu.com>
This commit is contained in:
parent
d55712b783
commit
164455ad2f
1 changed files with 5 additions and 1 deletions
|
|
@ -237,6 +237,9 @@ spec:
|
|||
containers:
|
||||
- name: litellm
|
||||
image: ghcr.io/berriai/litellm:main-stable # it is recommended to fix a version generally
|
||||
args:
|
||||
- "--config"
|
||||
- "/app/proxy_server_config.yaml"
|
||||
ports:
|
||||
- containerPort: 4000
|
||||
volumeMounts:
|
||||
|
|
@ -386,7 +389,8 @@ spec:
|
|||
- "/app/proxy_config.yaml" # Update the path to mount the config file
|
||||
volumeMounts: # Define volume mount for proxy_config.yaml
|
||||
- name: config-volume
|
||||
mountPath: /app
|
||||
mountPath: /app/proxy_config.yaml
|
||||
subPath: config.yaml # Specify the field under data of the ConfigMap litellm-config
|
||||
readOnly: true
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue