Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RAID creation for internal HDD in the server #72

Open
gparanth opened this issue May 16, 2022 · 1 comment
Open

RAID creation for internal HDD in the server #72

gparanth opened this issue May 16, 2022 · 1 comment

Comments

@gparanth
Copy link

I want to create RAID1 for two internal hard disks in a server. Please guide me the procedure to do using redfish utilities

@mraineri
Copy link
Contributor

We do not have a tool available in Tacklebox at the moment. However, the process would be to perform a POST operation to the VolumeCollection for the storage subsystem in the desired system where you reference the drives involved in the RAID, the capacity, and the raid type. It would look something like this:

POST /redfish/v1/Systems/1/Storage/1/Volumes

{
    "RAIDType": "RAID01",
    "CapacityBytes": 50000000000,
    "Links": {
        "Drives": [
            {
                "@odata.id": "/redfish/v1/Chassis/1/Drives/6"
            },
            {
                "@odata.id": "/redfish/v1/Chassis/1/Drives/7"
            }
        ]
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants