I have received an email saying that my node version is too old for the QA satellite, which is weird because I keep automatic updates enabled on that node. Still, I tried to update the node manually, but it did not update.
2024-03-15T21:10:59Z INFO Running on version {"Process": "storagenode-updater", "Service": "storagenode-updater", "Version": "v1.95.1"}
2024-03-15T21:10:59Z INFO Downloading versions. {"Process": "storagenode-updater", "Server Address": "https://version.storj.io"}
2024-03-15T21:11:00Z INFO Current binary version {"Process": "storagenode-updater", "Service": "storagenode", "Version": "v1.95.1"}
2024-03-15T21:11:00Z INFO New version is being rolled out but hasn't made it to this node yet {"Process": "storagenode-updater", "Service": "storagenode"}
2024-03-15T21:11:00Z INFO Current binary version {"Process": "storagenode-updater", "Service": "storagenode-updater", "Version": "v1.95.1"}
2024-03-15T21:11:00Z INFO New version is being rolled out but hasn't made it to this node yet {"Process": "storagenode-updater", "Service": "storagenode-updater"}
# server address to check its version against
#version.server-address: https://version.storj.io
version.server-address: https://version.qa.storj.io
# if true, uses peer ca whitelist checking
server.use-peer-ca-whitelist: false
# list of trust sources
storage2.trust.sources: 12nErpw5894bSadEPfYLc4PJQ6ZuFHNhqhXHTAYdPsSzBrNcUiX@de-tube.ddns.net:10000,1GGZktUwmMKTwTWNcmGnFJ3n$
Unfortunately for docker nodes, the VERSION_SERVER_URL flag overrides the value in the config, and the default is set to https://version.storj.io. You would have to explicitly set the VERSION_SERVER_URL to https://version.qa.storj.io in your docker run command:
docker run ...
-e VERSION_SERVER_URL="https://version.qa.storj.io"