Merge "Update: WRO Install Guides"
This commit is contained in:
commit
06ed29a09f
@ -168,6 +168,28 @@ Configure worker nodes
|
||||
|
||||
done
|
||||
|
||||
#. **For OpenStack Only:** Optionally configure the number of host CPUs in
|
||||
NOVA’s dedicated CPU Pool for this host. By default, all remaining host
|
||||
CPUs, outside of platform and vswitch host CPUs, are assigned to NOVA’s
|
||||
shared CPU Pool for this host. List the number of host cpus and function
|
||||
assignments and configure the required dedicated host CPUs.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# list the number and function assignments for host’s CPUs
|
||||
# ‘application’ function → in NOVA’s shared CPU Pool
|
||||
# ‘application-isolated’ function → in NOVA’s dedicated CPU Pool
|
||||
~(keystone)admin)$ system host-cpu-list worker-0
|
||||
~(keystone)admin)$ system host-cpu-list worker-1
|
||||
|
||||
# Configure the required number of host CPUs in NOVA’s dedicated CPU Pool for each processor/socket
|
||||
for NODE in worker-0 worker-1; do
|
||||
|
||||
system host-cpu-modify -f application-isolated -p0 10 $NODE
|
||||
system host-cpu-modify -f application-isolated -p1 10 $NODE
|
||||
|
||||
done
|
||||
|
||||
#. **For OpenStack only:** Setup disk partition for nova-local volume group,
|
||||
needed for stx-openstack nova ephemeral disks.
|
||||
|
||||
|
@ -380,6 +380,23 @@ Configure controller-0
|
||||
After controller-0 is unlocked, changing vswitch_type requires
|
||||
locking and unlocking controller-0 to apply the change.
|
||||
|
||||
#. **For OpenStack Only:** Optionally configure the number of host CPUs in
|
||||
NOVA’s dedicated CPU Pool for this host. By default, all remaining host
|
||||
CPUs, outside of platform and vswitch host CPUs, are assigned to NOVA’s
|
||||
shared CPU Pool for this host. List the number of host cpus and function
|
||||
assignments and configure the required dedicated host CPUs.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# list the number and function assignments for host’s CPUs
|
||||
# ‘application’ function → in NOVA’s shared CPU Pool
|
||||
# ‘application-isolated’ function → in NOVA’s dedicated CPU Pool
|
||||
~(keystone)admin)$ system host-cpu-list controller-0
|
||||
|
||||
# Configure the required number of host CPUs in NOVA’s dedicated CPU Pool for each processor/socket
|
||||
~(keystone)admin)$ system host-cpu-modify -f application-isolated -p0 10 controller-0
|
||||
~(keystone)admin)$ system host-cpu-modify -f application-isolated -p1 10 controller-0
|
||||
|
||||
#. **For OpenStack only:** Set up disk partition for nova-local volume
|
||||
group, which is needed for stx-openstack nova ephemeral disks.
|
||||
|
||||
@ -793,6 +810,22 @@ Configure controller-1
|
||||
# assign 10x 1G huge page on processor/numa-node 1 on controller-1 to applications
|
||||
system host-memory-modify -f application -1G 10 controller-1 1
|
||||
|
||||
#. **For OpenStack Only:** Optionally configure the number of host CPUs in
|
||||
NOVA’s dedicated CPU Pool for this host. By default, all remaining host
|
||||
CPUs, outside of platform and vswitch host CPUs, are assigned to NOVA’s
|
||||
shared CPU Pool for this host. List the number of host cpus and function
|
||||
assignments and configure the required dedicated host CPUs.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# list the number and function assignments for host’s CPUs
|
||||
# ‘application’ function → in NOVA’s shared CPU Pool
|
||||
# ‘application-isolated’ function → in NOVA’s dedicated CPU Pool
|
||||
~(keystone)admin)$ system host-cpu-list controller-1
|
||||
|
||||
# Configure the required number of host CPUs in NOVA’s dedicated CPU Pool for each processor/socket
|
||||
~(keystone)admin)$ system host-cpu-modify -f application-isolated -p0 10 controller-1
|
||||
~(keystone)admin)$ system host-cpu-modify -f application-isolated -p1 10 controller-1
|
||||
|
||||
#. **For OpenStack only:** Set up disk partition for nova-local volume group,
|
||||
which is needed for stx-openstack nova ephemeral disks.
|
||||
|
@ -351,6 +351,23 @@ The newly installed controller needs to be configured.
|
||||
After controller-0 is unlocked, changing vswitch_type requires
|
||||
locking and unlocking controller-0 to apply the change.
|
||||
|
||||
#. **For OpenStack Only:** Optionally configure the number of host CPUs in
|
||||
NOVA’s dedicated CPU Pool for this host. By default, all remaining host
|
||||
CPUs, outside of platform and vswitch host CPUs, are assigned to NOVA’s
|
||||
shared CPU Pool for this host. List the number of host cpus and function
|
||||
assignments and configure the required dedicated host CPUs.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# list the number and function assignments for host’s CPUs
|
||||
# ‘application’ function → in NOVA’s shared CPU Pool
|
||||
# ‘application-isolated’ function → in NOVA’s dedicated CPU Pool
|
||||
~(keystone)admin)$ system host-cpu-list controller-0
|
||||
|
||||
# Configure the required number of host CPUs in NOVA’s dedicated CPU Pool for each processor/socket
|
||||
~(keystone)admin)$ system host-cpu-modify -f application-isolated -p0 10 controller-0
|
||||
~(keystone)admin)$ system host-cpu-modify -f application-isolated -p1 10 controller-0
|
||||
|
||||
#. **For OpenStack only:** Set up disk partition for nova-local volume
|
||||
group, which is needed for stx-openstack nova ephemeral disks.
|
||||
|
||||
|
@ -695,6 +695,28 @@ Configure worker nodes
|
||||
|
||||
done
|
||||
|
||||
#. **For OpenStack Only:** Optionally configure the number of host CPUs in
|
||||
NOVA’s dedicated CPU Pool for this host. By default, all remaining host
|
||||
CPUs, outside of platform and vswitch host CPUs, are assigned to NOVA’s
|
||||
shared CPU Pool for this host. List the number of host cpus and function
|
||||
assignments and configure the required dedicated host CPUs.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# list the number and function assignments for host’s CPUs
|
||||
# ‘application’ function → in NOVA’s shared CPU Pool
|
||||
# ‘application-isolated’ function → in NOVA’s dedicated CPU Pool
|
||||
~(keystone)admin)$ system host-cpu-list worker-0
|
||||
~(keystone)admin)$ system host-cpu-list worker-1
|
||||
|
||||
# Configure the required number of host CPUs in NOVA’s dedicated CPU Pool for each processor/socket
|
||||
for NODE in worker-0 worker-1; do
|
||||
|
||||
system host-cpu-modify -f application-isolated -p0 10 $NODE
|
||||
system host-cpu-modify -f application-isolated -p1 10 $NODE
|
||||
|
||||
done
|
||||
|
||||
#. **For OpenStack only:** Setup disk partition for nova-local volume group,
|
||||
needed for stx-openstack nova ephemeral disks.
|
||||
|
||||
|
@ -348,6 +348,28 @@ Configure worker nodes
|
||||
|
||||
done
|
||||
|
||||
#. **For OpenStack Only:** Optionally configure the number of host CPUs in
|
||||
NOVA’s dedicated CPU Pool for this host. By default, all remaining host
|
||||
CPUs, outside of platform and vswitch host CPUs, are assigned to NOVA’s
|
||||
shared CPU Pool for this host. List the number of host cpus and function
|
||||
assignments and configure the required dedicated host CPUs.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# list the number and function assignments for host’s CPUs
|
||||
# ‘application’ function → in NOVA’s shared CPU Pool
|
||||
# ‘application-isolated’ function → in NOVA’s dedicated CPU Pool
|
||||
~(keystone)admin)$ system host-cpu-list worker-0
|
||||
~(keystone)admin)$ system host-cpu-list worker-1
|
||||
|
||||
# Configure the required number of host CPUs in NOVA’s dedicated CPU Pool for each processor/socket
|
||||
for NODE in worker-0 worker-1; do
|
||||
|
||||
system host-cpu-modify -f application-isolated -p0 10 $NODE
|
||||
system host-cpu-modify -f application-isolated -p1 10 $NODE
|
||||
|
||||
done
|
||||
|
||||
#. **For OpenStack only:** Setup disk partition for nova-local volume group,
|
||||
needed for stx-openstack nova ephemeral disks.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user