Hello everyone, My name is Damyan and I'm new to ...
# harvester
g
Hello everyone, My name is Damyan and I'm new to the world of SUSE Harvester. I'm really impressed by both the technology and the community around it. I'm currently facing an issue I haven't been able to resolve. I have two QSAN XCubeSAN storage servers that I want to use as storage for a Harvester 1.4.2 cluster I've set up. I added an iSCSI target to one of the nodes, and I can see it in the Harvester UI. However, when I try to add it as an extra disk, I get the following error: failed to update device mount 79de259774dce4983b72c9ddb950793c: failed to execute: nsenter [--mount=/host/proc/5274/ns/mnt --net=/host/proc/5274/ns/net --ipc=/host/proc/5274/ns/ipc mount -t ext4 -o journal_checksum,journal_ioprio=0,barrier=1,errors=remount-ro,relatime /dev/sdd /var/lib/harvester/extra-disks/79de259774dce4983b72c9ddb950793c], output , stderr mount: /var/lib/harvester/extra-disks/79de259774dce4983b72c9ddb950793c: wrong fs type, bad option, bad superblock on /dev/sdd, missing codepage or helper program, or other error. : exit status 32 Could anyone advise me on what I can do to resolve this issue? Thanks in advance for your time and help!
t
How did you add the iscsi drive? I would use a CSI and add multi-pathd. something like https://github.com/kubernetes-csi/csi-driver-iscsi
also upgrade to 1.5
g
I added the iSCSI disk using the following command: sudo iscsiadm -m node -T iqn.2004-08.com.qsanxs3216 000d47038dev0.ctr1 -p 192.168.70.10 --login I'm planning to upgrade to version 1.5.0, but for some reason, the Upgrade button doesn't appear in the Dashboard. I checked with: kubectl get pods -n harvester-system | grep upgrade-repo-hvst …but it doesn’t return anything. Do you happen to know what could be causing this issue? Or should I just proceed with a manual upgrade?
t
Basically, any command you run on the host gets wiped out when you reboot it. That’s why you need to use a CSI. I’ll send you the Yamo command in a few minutes. That’ll allow you to do the upgrade.
g
Thank you very much.
t
kubectl apply -f <https://releases.rancher.com/harvester/v1.5.1-rc1/version.yaml>
will allow you to upgrade.
g
Thank you