Skip to content

Commit 0bfa15d

Browse files
committed
Allow to set the CT_CUSTOM_CLIENTS_ORIGIN env variable.
1 parent dc6854c commit 0bfa15d

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

charts/intel/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ spec:
8787
{{ else }}
8888
{{ .Values.ai.url | quote }}
8989
{{ end }}
90+
{{- if .Values.codetogether.customClientsUrl }}
91+
- name: CT_HQ_OLLAMA_AI_CLIENTS_URL
92+
value: {{ .Values.codetogether.customClientsUrl | quote }}
93+
{{- end }}
9094
- name: CT_HQ_OLLAMA_AI_MODEL_NAME
9195
value: {{ .Values.ai.modelName | default "gemma3:1b" | quote }}
9296
- name: CT_HQ_OLLAMA_AI_API_KEY

charts/intel/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ imageCredentials:
3939
codetogether:
4040
url: https://<server-fqdn>
4141
trustAllCerts: false # Set to 'true' to trust all certificates
42+
# customClientsUrl: "" # Optional custom URL for clients to download from
4243

4344

4445
hqproperties:

0 commit comments

Comments
 (0)