Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions charts/collab/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ spec:
{{- if eq .Values.codetogether.mode "locator-edge" }}
- name: CT_LOCATOR
value: {{ .Values.locatorEdge.locator | quote }}
{{- if .Values.locatorEdge.locatorLan }}
- name: CT_LOCATOR_INTERNAL
value: {{ .Values.locatorEdge.locatorLan | quote }}
{{- end }}
- name: CT_REGION
value: {{ .Values.locatorEdge.region | quote }}
{{- end }}
Expand Down
3 changes: 3 additions & 0 deletions charts/collab/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ locatorCentral:
locatorEdge:
# URL that the Locator is listening on.
locator: "https://codetogether.locator"
# Internal k8s url for the locator service.
# Optional - If not set k8s dns need to know how to resolve the locator url.
# locatorLan: "http://<collab-locator-service-name>.<namespace>.svc.cluster.local:443"
# Optional region which can have CIDR IP address regions assigned to
# allowing regional routing of requests. Only enable if deploying
# CodeTogether to multiple regional data centers.
Expand Down
Loading