Passing port 5671 through the ingress-nginx proxy to the `rabbitmq` service will allow clients outside the cluster to connect to it. While we're at it, we'll move the definition of the `tcp-services` ConfigMap to its own file to make it easier to maintain.
8 lines
141 B
YAML
8 lines
141 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: tcp-services
|
|
data:
|
|
'8883': home-assistant/mosquitto:8883
|
|
'5671': rabbitmq/rabbitmq:5671
|