Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions charts/intel/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ spec:
# Set CodeTogether runtime configuration
- name: CT_HQ_BASE_URL
value: {{ .Values.codetogether.url | quote }}
{{- if .Values.codetogether.customClientsUrl }}
- name: CT_CUSTOM_CLIENTS_ORIGIN
value: {{ .Values.codetogether.customClientsUrl | quote }}
{{- end }}
{{- if .Values.java.customCacerts.enabled }}
- name: CT_TRUST_STORE
value: -Djavax.net.ssl.trustStore=/etc/ssl/certs/java/cacerts
Expand Down Expand Up @@ -87,10 +91,6 @@ spec:
{{ else }}
{{ .Values.ai.url | quote }}
{{ end }}
{{- if .Values.codetogether.customClientsUrl }}
- name: CT_CUSTOM_CLIENTS_ORIGIN
value: {{ .Values.codetogether.customClientsUrl | quote }}
{{- end }}
- name: CT_HQ_OLLAMA_AI_MODEL_NAME
value: {{ .Values.ai.modelName | default "gemma3:1b" | quote }}
- name: CT_HQ_OLLAMA_AI_API_KEY
Expand Down
Loading