Advanced installation parameters
With Portworx, you can specify additional parameters at installation.
Specify the RAID level for local storage
Portworx supports two RAID level configurations for local storage: RAID 0, and RAID 10.
Follow these steps to specify the RAID level Portworx should use at installation.
Log in to Portworx Central to generate a spec.
Download the manifest and use the
args
section of the PortworxDaemonSet
to specify the RAID level.- The following example specifies RAID 0:
args:
["-k", "etcd:http://70.0.0.65:2379", "-c", "kockica-11", "-d", "eth1", "-m", "eth1", "-s", "/dev/sdb", "-secret_type", "k8s", "-raid", "0",
"-x", "kubernetes"]noteAll other arguments, apart from the ones that specify the RAID level, are examples. Be sure to use values that match your environment.
- The following example specifies RAID 10:
args:
["-k", "etcd:http://70.0.0.65:2379", "-c", "kockica-11", "-d", "eth1", "-m", "eth1", "-s", "/dev/sdb", "-secret_type", "k8s", "-raid", "10",
"-x", "kubernetes"]Continue with the steps from the Apply the specs section.