liangyuanpeng / charts

Some helm chart
Apache License 2.0
4 stars 3 forks source link

[chirpstack] fix link between gateway-bridge and mosquitto #19

Closed mfilotto closed 2 years ago

mfilotto commented 2 years ago

Gateway brdige cannot contact mosquitto because of wrong service name

https://github.com/liangyuanpeng/charts/blob/main/chirpstack/templates/gateway-bridge/deployment.yaml#L28 use {{ .Values.mosquitto.service.name }} https://github.com/liangyuanpeng/charts/blob/main/chirpstack/templates/gateway-bridge/configmap.yaml#L13 use mosquitto

It should be the same as mosquitto service name https://github.com/liangyuanpeng/charts/blob/main/chirpstack/templates/mosquitto/service.yaml#L4 should be: {{ .Release.Name }}-{{ .Values.mosquitto.service.name | default "mosquitto" }}

mfilotto commented 2 years ago

Merged