Hi,
we are encountering some cleapnup / expiry issues on remote agents (6.0.3 and 6.2.2).
Global expiry settings do not seem to purge xml-data dirs on remote agents, even if the settings should find several files.
Now we are looking for a best (or recommended) practise solution to get some free disk space.
Would a script like this be useful and secure in consistency matters?
find /srv/bamboo/bamboo-agent-home/xml-data/build-dir/ -maxdepth 1 -type d -mtime +14 |xargs rm -rf
Ralf
Hi Ralf,
Build expiry doesn't clean off the data from the remote agents. It looks after the bamboo server data only.
There are few improvement requests already in the system for the same:
* https://jira.atlassian.com/browse/BAM-13680
* https://jira.atlassian.com/browse/BAM-13589
Since the agents transfer the build artifacts and other data to Bamboo, there is no relation so you can use the command which you have mentioned to clean the data which is 14 days older or whatever your requirement is.
I believe that Clean working directory after each build option in the Plan configuration is the proper solution for this problem.
Thanks
Hi Robhit,
thank you heaps for the hints. I was aware of the "Clean working directory after each build" options but we were looking for a more global solution. To prevent to reconfigure every single build plan.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ralf,
I was thinking of having a script in the machine where the remote agent is.
Then use this script to check for disk usage at a certain time interval.
If the disk usage reaches 80% or whatever, execute the command which you mentioned earlier to delete the data from the agent directories.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.