Skip to content

Latest commit

 

History

History
104 lines (69 loc) · 2.24 KB

expand_hard_disk.md

File metadata and controls

104 lines (69 loc) · 2.24 KB

Expand the Hard Disk of Virtual Appliance

If you install Harbor with OVA, the persistent data(such as images and database) is stored in a hard disk which is mounted on directory "/data", and the default size is 60GB. As more and more images are pushed into it, the capacity may not meet your requirements.

You can check the space on Harbor web UI by clicking on Projects:

lvm

If your free space is running out, you can expand the size of the hard disk by the following steps:

  1. Add New Hard Disk to VM

    (1) Log in vSphere web client. Power off Harbor's virtual appliance.
    (2) Right click on the VM and select "Edit Settings".
    (3) Select "New Hard Disk", and click "OK".

    lvm

    We add a 10GB new hard disk to show the operations.

    (4) Power on the VM.

  2. Expand Hard Disk using LVM

    Login from the console of the virtual appliance and run the following commands:

    (1) Check the current size of "/data":

    df -h /data

    lvm

    (2) Find the new hard disk, e.g. "/dev/sdc". Replace all "/dev/sdc" with your disk in the following commands.

    fdisk -l

    lvm

    (3) Create new physical volume:

    pvcreate /dev/sdc

    (4) Check the volume group:

    vgdisplay

    lvm

    (5) Expand the volume group:

    vgextend data1_vg /dev/sdc

    (6) Check the volume group again:

    vgdisplay

    lvm

    (7) Check the logical volume:

    lvdisplay

    lvm

    (8) Resize the logical volume:

    lvresize -l +100%FREE /dev/data1_vg/data

    lvm

    (9) Check the logical volume again, note the change of "LV Size":

    lvdisplay

    lvm

    (10) Resize the file system:

    resize2fs /dev/data1_vg/data

    (11) Check the size "/data" again:

    df -h /data

    lvm

    You can also check the size on Harbor web UI:

    lvm

After that, your disk should be expanded successfully. If you want to add more hard disks, do the steps again.