Skip to content

Commit

Permalink
fix: console kop service port issue (#1194)
Browse files Browse the repository at this point in the history
Signed-off-by: ericsyh <[email protected]>
  • Loading branch information
ericsyh authored Dec 20, 2024
1 parent f82fc0a commit b293669
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 @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,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 b293669

Please sign in to comment.