jetlag
jetlag copied to clipboard
the extra disk (nvme, etc) should be mounted on /var/lib/containers on bastion
On bastion host, specially when holding a registry, the root hard drive can get filled.
If the host has extra disks, like nvme, they should be made ready on /var/lib/containers so that system is getting root disk filled
I think we should just document how to setup a separate disk to host your disconnected registry. I have ran into this myself and have a few steps to quickly resolve this issue:
- Tear down any podman pods on bastion
- mv /opt /opt2
- parted /dev/nvme0n1 (Or whatever extra disk you are using)
- (parted) mklabel
- (parted) unit s
- (parted) mkpart primary xfs 0% 100%
- (parted) quit
- mkfs.xfs /dev/nvme0n1p1
- mkdir opt
- lsblk --fs /dev/nvme0n1p1
- vi /etc/fstab
- systemctl daemon-reload
- mount /opt
- rerun setup-bastion to bring podman pods back up