We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.0.0
Use werf on a runner for an extended period.
After prolonged use of werf on a runner, lock files accumulate. Some are over a year old, and the situation is similar on other runners.
# ls /home/ubuntu/.werf/service/locks/ | wc -l 1715600 # df -ih Filesystem Inodes IUsed IFree IUse% Mounted on /dev/sdb 3.2M 2.8M 351K 90% /home/ubuntu # ls -lah /tmp/werf-host-cleanup.log -rw-rw-r-- 1 ubuntu ubuntu 4.7K Apr 4 09:00 /tmp/werf-host-cleanup.log
Automatic removal of old lock files and prevention of their accumulation.
Workaround:
while pgrep "werf" > /dev/null; do sleep 1; done && rm -rf ~/.werf/service/locks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Before proceeding
Version
2.0.0
How to reproduce
Use werf on a runner for an extended period.
Result
After prolonged use of werf on a runner, lock files accumulate. Some are over a year old, and the situation is similar on other runners.
Expected result
Automatic removal of old lock files and prevention of their accumulation.
Additional information
Workaround:
The text was updated successfully, but these errors were encountered: