Skip to content

Commit

Permalink
Fix invalid internal server name in Oxia config (#552)
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 authored Nov 22, 2024
1 parent c6ce11a commit cc12992
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 cc12992

Please sign in to comment.