From b0c75d405c4bf9d9bbb1908a625da793b3a0b78b Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 23 Mar 2024 17:58:39 -0700 Subject: [PATCH] (feat) update kub.yaml --- deploy/kubernetes/kub.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy/kubernetes/kub.yaml b/deploy/kubernetes/kub.yaml index 1ddc0e95f..b3a9ddd33 100644 --- a/deploy/kubernetes/kub.yaml +++ b/deploy/kubernetes/kub.yaml @@ -3,7 +3,7 @@ kind: Deployment metadata: name: litellm-deployment spec: - replicas: 5 + replicas: 3 selector: matchLabels: app: litellm @@ -17,17 +17,17 @@ spec: image: ghcr.io/berriai/litellm:main-latest env: - name: AZURE_API_KEY - value: "d699s" + value: "d6f****" - name: AZURE_API_BASE - value: "https://openai/" + value: "https://openai - name: LITELLM_MASTER_KEY value: "sk-1234" - ports: - - containerPort: 4000 + - name: DATABASE_URL + value: "postgresql://ishaan:********* args: - "--config" - "/app/proxy_config.yaml" # Update the path to mount the config file - volumeMounts: # Define volume mount for proxy_config.yaml + volumeMounts: # Define volume mount for proxy_config.yaml - name: config-volume mountPath: /app readOnly: true