Hi,
I have created profile to allocate 100 GB blockstore with the intention of saving future installation as dataset. Following is the relevant part in the profile that I have used to create the blockstore with custom size:# Lustre Cluster
for i in range(params.n):
node = pg.RawPC("server"+str(i))
node.hardware_type = params.t
node.disk_image = disk_image_centOS_8
bs = node.Blockstore("bs_server" + str(i), "/custom-install")
bs.size = "100GB"
iface = node.addInterface("if"+str(i))
link.addInterface(iface)
rspec.addResource(node)
for i in range(params.m):
node = pg.RawPC("node"+str(i))
node.hardware_type = params.t
node.disk_image = disk_image_centOS_8
bs = node.Blockstore("bs_client" + str(i), "/custom-install")
bs.size = "100GB"
network_index = i + params.n
iface = node.addInterface("if"+str(network_index))
link.addInterface(iface)
rspec.addResource(node)
However, when I instantiate this profile in c220g5 machine, I don't see the mountpoint. Here's some relevant output on that:
[root@server0 ~]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 447.1G 0 disk
├─sda1 8:1 0 16G 0 part /
├─sda2 8:2 0 3G 0 part
├─sda3 8:3 0 3G 0 part [SWAP]
└─sda4 8:4 0 425.1G 0 part
sdb 8:16 0 1.1T 0 disk
└─emulab-bs_server0 253:0 0 93.1G 0 lvm
[root@server0 ~]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 94G 0 94G 0% /dev
tmpfs 94G 0 94G 0% /dev/shm
tmpfs 94G 18M 94G 1% /run
tmpfs 94G 0 94G 0% /sys/fs/cgroup
/dev/sda1 16G 3.2G 12G 22% /
ops.wisc.cloudlab.us:/proj/dirr-PG0 100G 25G 75G 25% /proj/dirr-PG0
ops.wisc.cloudlab.us:/share 50G 2.1G 48G 5% /share
tmpfs 19G 0 19G 0% /run/user/20006
[root@server0 ~]#
Follow is the information to the current experiment that I am running:
Name: mrashid2-216751
State: ready
Profile: lustre_image_creation_CentOS_8
Creator: mrashid2
Project: DIRR
When I created with c220g2 machines before, I could see the mountpoint. But not with the c220g5. Kindly let me know how I can resolve this issue. Looking forward to hearing back from you.
Best regards,
Hasan