Skip to content

Commit fb583ef

Browse files
committed
Update .env.example
1 parent ef8b6a2 commit fb583ef

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

apps/chatbot-server/.env.example

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,18 @@ AZURE_OPENAI_API_EMBEDDING_DEPLOYMENT_URL=https://<your-instance>.openai.azure.c
2020

2121
AZURE_OPENAI_CHAT_COMPLETION_MODEL=gpt-4.1
2222
AZURE_OPENAI_API_CHAT_COMPLETION_DEPLOYMENT_NAME=gpt-4.1
23-
AZURE_OPENAI_API_CHAT_COMPLETION_DEPLOYMENT_URL=https://<your-instance>.openai.azure.com/openai/deployments/gpt-4.1/chat/completions?api-version=2025-01-01-preview
23+
AZURE_OPENAI_API_CHAT_COMPLETION_DEPLOYMENT_URL=https://<your-instance>.openai.azure.com/openai/deployments/gpt-4.1/chat/completions?api-version=2025-01-01-preview
24+
25+
# DEPLOYMENT
26+
NAMESPACE=skunkworks
27+
28+
# Set the KUBECONFIG context
29+
# ```
30+
# kubectl config use-context api.staging.corp.mongodb.com
31+
# kubectl config set-context --current --namespace=$NAMESPACE
32+
# ```
33+
34+
# Run the following command to get the tokens
35+
staging_kubernetes_token=`kubectl get secret kanopy-cicd-token -o jsonpath="{.data.token}" | base64 --decode && echo`
36+
ecr_access_key=`kubectl get secret ecr -o jsonpath="{.data.ecr_access_key}" | base64 --decode && echo`
37+
ecr_secret_key=`kubectl get secret ecr -o jsonpath="{.data.ecr_secret_key}" | base64 --decode && echo`

0 commit comments

Comments
 (0)