Skip to content

Commit

Permalink
Fix invalid internal server name in Oxia config
Browse files Browse the repository at this point in the history
.svc doesn't resolve. it's better to use the fully qualified name
  • Loading branch information
lhotari committed Nov 22, 2024
1 parent c6ce11a commit 3803463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/pulsar/templates/_oxia.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ namespaces:
replicationFactor: {{ .Values.oxia.replicationFactor }}
servers:
- public: {{ template "pulsar.fullname" . }}-{{ .Values.oxia.component }}-svc.{{ template "pulsar.namespace" . }}.svc.cluster.local:{{ .Values.oxia.server.ports.public }}
internal: {{ template "pulsar.fullname" . }}-{{ .Values.oxia.component }}-svc.{{ template "pulsar.namespace" . }}.svc:{{ .Values.oxia.server.ports.internal }}
internal: {{ template "pulsar.fullname" . }}-{{ .Values.oxia.component }}-svc.{{ template "pulsar.namespace" . }}.svc.cluster.local:{{ .Values.oxia.server.ports.internal }}
{{- end }}

{{/*
Expand Down

0 comments on commit 3803463

Please sign in to comment.