I was using the 1.0.4tagged docker release in Kubernetes because our standard is to use versioned containers. And I got stuck trying to figure out why I kept getting the following error when it was working fine locally (using latest tag):
x.x.x.x:443 disconnected: #<Socket::ConnectError:Error connecting to 'rabbitmq.default.svc.cluster.local:443': Host is unreachable>
I was clearly setting the upstream as tcp://rabbitmq.default.svc.cluster.local:5672, so why the port change in the error?
I finally noticed that the 1.0.4 tag is a year old. Switching to latest tag works. But what is the version number so I can tag my own copy?
I was using the
1.0.4
tagged docker release in Kubernetes because our standard is to use versioned containers. And I got stuck trying to figure out why I kept getting the following error when it was working fine locally (usinglatest
tag):I was clearly setting the upstream as
tcp://rabbitmq.default.svc.cluster.local:5672
, so why the port change in the error?I finally noticed that the
1.0.4
tag is a year old. Switching tolatest
tag works. But what is the version number so I can tag my own copy?