File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -20,4 +20,18 @@ AZURE_OPENAI_API_EMBEDDING_DEPLOYMENT_URL=https://<your-instance>.openai.azure.c
20
20
21
21
AZURE_OPENAI_CHAT_COMPLETION_MODEL = gpt-4.1
22
22
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`
You can’t perform that action at this time.
0 commit comments