Skip to content

Commit 53d7b95

Browse files
committed
(fix) load testing key used
1 parent bbfd850 commit 53d7b95

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/locustfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class MyUser(HttpUser):
1010
def chat_completion(self):
1111
headers = {
1212
"Content-Type": "application/json",
13-
"Authorization": f"Bearer sk-gUvTeN9g0sgHBMf9HeCaqA",
13+
"Authorization": f"Bearer sk-S2-EZTUUDY0EmM6-Fy0Fyw",
1414
# Include any additional headers you may need for authentication, etc.
1515
}
1616

deploy/kubernetes/kub.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ spec:
1515
containers:
1616
- name: litellm-container
1717
image: ghcr.io/berriai/litellm:main-latest
18+
imagePullPolicy: Always
1819
env:
1920
- name: AZURE_API_KEY
2021
value: "d6f****"
2122
- name: AZURE_API_BASE
22-
value: "https://openai
23+
value: "https://openai"
2324
- name: LITELLM_MASTER_KEY
2425
value: "sk-1234"
2526
- name: DATABASE_URL
26-
value: "postgresql://ishaan:*********""
27+
value: "postgresql://ishaan*********"
2728
args:
2829
- "--config"
2930
- "/app/proxy_config.yaml" # Update the path to mount the config file

0 commit comments

Comments
 (0)