The cleanup task runs docker volume rm `docker volume ls -q -f dangling=true -f name=scale_`. This command may fail due to the argument list too long if there are too many volumes to clean up causing this task to continuously fail and putting the node in a degraded state. This task should be updated to either clean up all volumes in chunks or upgrade to a better volume prune (depending on the supported version of Docker).
The cleanup task runs
docker volume rm `docker volume ls -q -f dangling=true -f name=scale_`
. This command may fail due to the argument list too long if there are too many volumes to clean up causing this task to continuously fail and putting the node in a degraded state. This task should be updated to either clean up all volumes in chunks or upgrade to a better volume prune (depending on the supported version of Docker).