Skip to content

Commit f9a9b85

Browse files
authored
DEVOPS-2757-added-openai-admin-api-key-support (#67)
1 parent 5d1d456 commit f9a9b85

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

chart/templates/secrets.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ stringData:
6161
{{- if .Values.secrets.redis.password }}
6262
SPRING_REDIS_PASSWORD: {{ .Values.secrets.redis.password | quote }}
6363
{{- end }}
64+
{{- if .Values.secrets.defaults.open_ai_admin_api_key }}
65+
AUTONOMOUS_DEBUGGER_OPEN_AI_ADMIN_API_KEY: {{ .Values.secrets.defaults.open_ai_admin_api_key | quote }}
66+
{{- end }}
6467
---
6568
kind: Secret
6669
apiVersion: v1

chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ secrets:
473473
datadog_api_key: "" # Optional | If empty, will not be used
474474
mixpanel_token: "" # Optional | If empty, will not be used
475475
lightrun_initial_sys_api_key: "" # Optional | If empty, will not be used
476-
476+
open_ai_admin_api_key: "" # Optional | If empty, will not be used | OpenAI Admin API key for administrative operations (Not applicable for on premise deployments)
477477
dockerhub_config:
478478
# This secret is used as imagePullSecrets for docker registry.
479479
# It has 3 modes:

0 commit comments

Comments
 (0)