ed7de99b58
Refactoor linking for DS use. Change-Id: I6de5813fb7df5741e13d34163545d2402a4fd6c5 Signed-off-by: Ron Stone <ronald.stone@windriver.com>
68 lines
1.9 KiB
ReStructuredText
68 lines
1.9 KiB
ReStructuredText
.. incl-config-controller-0-virt-controller-storage-start:
|
|
|
|
On virtual controller-0:
|
|
|
|
#. Acquire admin credentials:
|
|
|
|
::
|
|
|
|
source /etc/platform/openrc
|
|
|
|
#. Configure the |OAM| and MGMT interfaces of controller-0 and specify
|
|
the attached networks:
|
|
|
|
::
|
|
|
|
OAM_IF=enp7s1
|
|
MGMT_IF=enp7s2
|
|
system host-if-modify controller-0 lo -c none
|
|
IFNET_UUIDS=$(system interface-network-list controller-0 | awk '{if ($6=="lo") print $4;}')
|
|
for UUID in $IFNET_UUIDS; do
|
|
system interface-network-remove ${UUID}
|
|
done
|
|
system host-if-modify controller-0 $OAM_IF -c platform
|
|
system interface-network-assign controller-0 $OAM_IF oam
|
|
system host-if-modify controller-0 $MGMT_IF -c platform
|
|
system interface-network-assign controller-0 $MGMT_IF mgmt
|
|
system interface-network-assign controller-0 $MGMT_IF cluster-host
|
|
|
|
#. Configure NTP servers for network time synchronization:
|
|
|
|
.. note::
|
|
|
|
In a virtual environment, this can sometimes cause Ceph clock
|
|
skew alarms. Also, the virtual instance clock is synchronized
|
|
with the host clock, so it is not absolutely required to
|
|
configure NTP here.
|
|
|
|
::
|
|
|
|
system ntp-modify ntpservers=0.pool.ntp.org,1.pool.ntp.org
|
|
|
|
#. Configure Ceph storage backend
|
|
|
|
.. important::
|
|
|
|
This step required only if your application requires
|
|
persistent storage.
|
|
|
|
If you want to install the StarlingX Openstack application
|
|
(|prefix|-openstack) this step is mandatory.
|
|
|
|
::
|
|
|
|
system storage-backend-add ceph --confirmed
|
|
|
|
#. If required, and not already done as part of bootstrap, configure
|
|
Docker to use a proxy server.
|
|
|
|
#. List Docker proxy parameters:
|
|
|
|
::
|
|
|
|
system service-parameter-list platform docker
|
|
|
|
#. Refer to |docker_proxy_config| for details about Docker proxy setting.
|
|
|
|
.. incl-config-controller-0-virt-controller-storage-end:
|