Skip to content

Commit

Permalink
fix: console kop service port issue
Browse files Browse the repository at this point in the history
Signed-off-by: ericsyh <[email protected]>
  • Loading branch information
ericsyh committed Nov 26, 2024
1 parent da726e7 commit 33f78dc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,11 @@ spec:
- name: WEB_SERVICE_URL
value: {{ template "pulsar.web.internal.service.url" . }}
- name: KOP_SERVICE_URL
value: {{ .Values.broker.advertisedDomain }}:9093
{{- if and .Values.broker.kop.enabled .Values.broker.kop.tls.enabled }}
value: "{{ .Values.broker.advertisedDomain }}:{{ .Values.broker.kop.ports.ssl }}"
{{- else }}
value: "{{ .Values.broker.advertisedDomain }}:{{ .Values.broker.kop.ports.plaintext }}"
{{- end }}
{{- if .Values.streamnative_console.login.sso.google.enabled }}
- name: GOOGLE_OAUTH2_ENABLED
value: "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,11 @@ spec:
- name: WEB_SERVICE_URL
value: {{ template "pulsar.web.internal.service.url" . }}
- name: KOP_SERVICE_URL
value: {{ .Values.broker.advertisedDomain }}:9093
{{- if and .Values.broker.kop.enabled .Values.broker.kop.tls.enabled }}
value: "{{ .Values.broker.advertisedDomain }}:{{ .Values.broker.kop.ports.ssl }}"
{{- else }}
value: "{{ .Values.broker.advertisedDomain }}:{{ .Values.broker.kop.ports.plaintext }}"
{{- end }}
{{- if .Values.streamnative_console.login.sso.google.enabled }}
- name: GOOGLE_OAUTH2_ENABLED
value: "true"
Expand Down

0 comments on commit 33f78dc

Please sign in to comment.