salt.states.mdadm

Managing software RAID with mdadm

A state module for creating or destroying software RAID devices.

/dev/md0:
  raid.present:
    - level: 5
    - devices:
      - /dev/xvdd
      - /dev/xvde
      - /dev/xvdf
    - chunk: 256
    - run: True
salt.states.mdadm.absent(name)

Verify that the raid is absent

name
The name of raid device to be destroyed
/dev/md0:
  raid:
    - absent
salt.states.mdadm.present(name, level, devices, **kwargs)

Verify that the raid is present

在 2014.7.0 版更改.

name
The name of raid device to be created
level
The RAID level to use when creating the raid.
devices
A list of devices used to build the array.
kwargs
Optional arguments to be passed to mdadm.

范例:

/dev/md0:
  raid.present:
    - level: 5
    - devices:
      - /dev/xvdd
      - /dev/xvde
      - /dev/xvdf
    - chunk: 256
    - run: True