RPi nodes V1.50.4

was curious as to why watchtower hadn’t updated two nodes I have on rpis after a few days of 1.50.4 release for docker nodes…and I’ve now made the mistake of trying to manually update two nodes on rpis…went through my normal every couple of months “maintenance” of updating/upgrading/rebooting at the same time I stopped the nodes, pruned the docker images, and then when I tried to pull the latest there are no available images for raspberry pis…I’m just now seeing in the discussion thread where it was stated that arm nodes running 32bit OS were going to stay on last release for a little while longer.

well now I’m not quite sure what to do since I’ve pruned the docker images and can’t pull the latest. Any suggestions? or are these nodes just going to sit offline for a days/weeks until the latest image is updated for this architecture?

pi@raspberrypi:~ $ uname -a
Linux raspberrypi 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l GNU/Linux
pi@raspberrypi:~ $ uname -m
armv7l

Edit: I did try and pull an older one that looked like it was for arm devices, but that didn’t work when I tried to start the container. said something along the lines of an issue with the version.

You can manually pull the arm32 image and specify it in your docker run command.

So:

docker pull storagelabs/storagenode:5f2777af9-v1.50.4-go1.17.5-arm32v6

The stop and remove your container and modify your docker run command to use the specified image:

docker run.....
..........
--name storagenode storjlabs/storagenode:5f2777af9-v1.50.4-go1.17.5-arm32v6

Once the issue is fixed, you can change your docker run command back to latest. I don’t think watchtower will update your node until you set it back to the latest tag.

1 Like

My rpi4s updated on there own. They took a bit longer but they updated.

no dice. pulled the suggested image and here’s the storagenode docker log:

downloading storagenode-updater
--2106-02-07 06:28:16--  https://version.storj.io/processes/storagenode-updater/minimum/url?os=linux&arch=arm
Resolving version.storj.io (version.storj.io)... failed: Try again.
wget: unable to resolve host address 'version.storj.io'
http://: Invalid host name.
downloading storagenode-updater
--2106-02-07 06:28:16--  https://version.storj.io/processes/storagenode-updater/minimum/url?os=linux&arch=arm
Resolving version.storj.io (version.storj.io)... failed: Try again.
wget: unable to resolve host address 'version.storj.io'
Aborted (core dumped)
http://: Invalid host name.
downloading storagenode-updater
--2106-02-07 06:28:16--  https://version.storj.io/processes/storagenode-updater/minimum/url?os=linux&arch=arm
Resolving version.storj.io (version.storj.io)... failed: Try again.
wget: unable to resolve host address 'version.storj.io'
Aborted (core dumped)
http://: Invalid host name.

Looks like you are seeing this issue, which should be resolved by updating the libseccomp2 package

3 Likes

thanks for the help @baker

really appreciate it!

1 Like