ibm-spectrum-scale-install-infra icon indicating copy to clipboard operation
ibm-spectrum-scale-install-infra copied to clipboard

nsd and filesystem inventory validation

Open mrolyat opened this issue 4 years ago • 0 comments

Typo in all.yml went undetected and wound up building an undesired NSD name later resulting in an NSD creation conflict. Inventory validation will help usability and user error from leading to failures.

     - device: /dev/sdh
        nsd: nsd_2000
        servers: node-vm3,node-vm4
        failureGroup: 2
        usage: dataAndMetadata
        pool: system
        device: /dev/sdi
        nsd: nsd_2001
        servers: node-vm3,node-vm4
        failureGroup: 4
        usage: dataAndMetadata
        pool: system

It will work if you will change this to add a - in front of device

     - device: /dev/sdh
        nsd: nsd_2000
        servers: node-vm3,node-vm4
        failureGroup: 2
        usage: dataAndMetadata
        pool: system
     -  device: /dev/sdi
        nsd: nsd_2001
        servers: node-vm3,node-vm4
        failureGroup: 4
        usage: dataAndMetadata
        pool: system

mrolyat avatar Mar 24 '20 20:03 mrolyat