Differences between revisions 1 and 2
Revision 1 as of 2021-11-12 00:39:51
Size: 495
Editor: PieterSmit
Comment:
Revision 2 as of 2021-11-12 21:55:04
Size: 684
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
 * Since inode run out on EXT4 going to try BTRFS for /home/bamboo/
   {{{
mkfs.btrfs --metadata single
LABEL=home /home btrfs defaults,noacl,autodefrag,compress,ssd,discard 0 0
}}}

Bamboo Build Server from Hashicorp

  • 2021 - Old school java build server - Onprem installations

Bamboo disk fillup

  • 2021 - v7 Bamboo not doing a good job of cleaning out build directories.
    • Find old node_module dirs to remove. (Had projectes with >80k node_module files :( )

      • find /home/bamboo/bamboo-agent-home/xml-data/build-dir/*/node_modules -maxdepth 0 -type d -ctime +7 -exec echo {} \;
        # To delete replace ```-exec echo``` with ```-exec rm -rf```
  • Since inode run out on EXT4 going to try BTRFS for /home/bamboo/
    • mkfs.btrfs --metadata single
      LABEL=home /home  btrfs  defaults,noacl,autodefrag,compress,ssd,discard 0 0

BambooBuild (last edited 2021-11-12 21:55:04 by PieterSmit)