Merge "Remove the step to manually add a route on compute nodes to access ldap (dsr8MR3)"
This commit is contained in:
commit
be3c3dd715
@ -72,9 +72,9 @@ subcloud, the subcloud installation has these phases:
|
|||||||
patch level as the system controller. This ensures that the subcloud
|
patch level as the system controller. This ensures that the subcloud
|
||||||
boot image aligns with the patch level of the load to be installed on
|
boot image aligns with the patch level of the load to be installed on
|
||||||
the subcloud.
|
the subcloud.
|
||||||
|
|
||||||
.. warning::
|
.. warning::
|
||||||
|
|
||||||
If the patch level of load-imported ISO does not match the system controller
|
If the patch level of load-imported ISO does not match the system controller
|
||||||
patch level, the subcloud patch state may not align with the system
|
patch level, the subcloud patch state may not align with the system
|
||||||
controller patch state.
|
controller patch state.
|
||||||
@ -126,11 +126,11 @@ Controlling the RVMC debug level and automatic serial console log capture
|
|||||||
|
|
||||||
The optional parameter, ``rvmc_debug_level``, in the subcloud install_values
|
The optional parameter, ``rvmc_debug_level``, in the subcloud install_values
|
||||||
YAML file, controls the generation of debug logs during |RVMC| installation,
|
YAML file, controls the generation of debug logs during |RVMC| installation,
|
||||||
which are then stored in the ansible log files for each subcloud.
|
which are then stored in the ansible log files for each subcloud.
|
||||||
|
|
||||||
**Valid rvmc_debug_levels**
|
**Valid rvmc_debug_levels**
|
||||||
|
|
||||||
The available ``rvmc_debug_level`` values control the log content as follows.
|
The available ``rvmc_debug_level`` values control the log content as follows.
|
||||||
|
|
||||||
Note that the log levels increase in verbosity as they increase:
|
Note that the log levels increase in verbosity as they increase:
|
||||||
|
|
||||||
@ -152,7 +152,7 @@ logs.
|
|||||||
|
|
||||||
When the ``rvmc_debug_level`` is enabled (``rvmc_debug_level`` > 0), the full serial
|
When the ``rvmc_debug_level`` is enabled (``rvmc_debug_level`` > 0), the full serial
|
||||||
console output can be automatically captured, provided the serial console is
|
console output can be automatically captured, provided the serial console is
|
||||||
configured in the 'install_type' install value.
|
configured in the ``install_type`` install value.
|
||||||
|
|
||||||
.. note:: Capturing graphical console output is not supported.
|
.. note:: Capturing graphical console output is not supported.
|
||||||
|
|
||||||
@ -563,81 +563,3 @@ subcloud ansible log files: ``/var/log/dcmanager/ansible``, and named as
|
|||||||
|
|
||||||
- For more information on bootstrapping and deploying, see the procedures
|
- For more information on bootstrapping and deploying, see the procedures
|
||||||
listed under :ref:`install-a-subcloud`.
|
listed under :ref:`install-a-subcloud`.
|
||||||
|
|
||||||
- Add static route for nodes in subcloud to access openldap service.
|
|
||||||
|
|
||||||
In a Distributed Cloud system, openldap service is running on Central
|
|
||||||
Cloud. In order for the nodes in the subclouds to access openldap service,
|
|
||||||
such as ssh to the nodes as openldap users, a static route to the System
|
|
||||||
Controller is required to be added in these nodes. This applies to
|
|
||||||
controller nodes, worker nodes and storage nodes (nodes that have sssd
|
|
||||||
running).
|
|
||||||
|
|
||||||
The static route can be added on each of the nodes in the subcloud using system
|
|
||||||
CLI.
|
|
||||||
|
|
||||||
The following examples show how to add the static route in controller node and
|
|
||||||
worker node:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
[sysadmin@controller-0 ~(keystone_admin)]$ system host-route-add controller-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
[sysadmin@controller-0 ~(keystone_admin)]$ system host-route-add compute-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
|
|
||||||
The static route can also be added using Deployment Manager by adding the
|
|
||||||
route in its configuration file.
|
|
||||||
|
|
||||||
The following examples show adding the route configuration in controller
|
|
||||||
and worker host profiles of the deployment manager's configuration file:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
Controller node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: controller-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:c3:00.0-nvme-1
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
activeinterface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
||||||
|
|
||||||
Worker node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: compute-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
boardManagement:
|
|
||||||
credentials:
|
|
||||||
password:
|
|
||||||
secret: bmc-secret
|
|
||||||
type: dynamic
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0
|
|
||||||
clockSynchronization: ntp
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
interface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
||||||
|
@ -251,7 +251,7 @@ subcloud, the subcloud installation process has two phases:
|
|||||||
between the subcloud and system controller, then the
|
between the subcloud and system controller, then the
|
||||||
``management_gateway_address`` parameter should be replaced with admin
|
``management_gateway_address`` parameter should be replaced with admin
|
||||||
subnet information.
|
subnet information.
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
@ -358,80 +358,3 @@ subcloud, the subcloud installation process has two phases:
|
|||||||
|
|
||||||
- For more information on bootstrapping and deploying, see the procedures
|
- For more information on bootstrapping and deploying, see the procedures
|
||||||
listed under :ref:`install-a-subcloud`.
|
listed under :ref:`install-a-subcloud`.
|
||||||
|
|
||||||
- Add static route for nodes in subcloud to access openldap service.
|
|
||||||
|
|
||||||
In DC system, openldap service is running on Central Cloud. In order for the nodes
|
|
||||||
in the subclouds to access openldap service, such as ssh to the nodes as openldap
|
|
||||||
users, a static route to the system controller is required to be added in these
|
|
||||||
nodes. This applies to controller nodes, worker nodes and storage nodes (nodes
|
|
||||||
that have sssd running).
|
|
||||||
|
|
||||||
The static route can be added on each of the nodes in the subcloud using system
|
|
||||||
CLI.
|
|
||||||
|
|
||||||
The following examples show how to add the static route in controller node and
|
|
||||||
worker node:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
system host-route-add controller-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
system host-route-add compute-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
|
|
||||||
The static route can also be added using Deployment Manager by adding the route
|
|
||||||
in its configuration file.
|
|
||||||
|
|
||||||
The following examples show adding the route configuration in controller and
|
|
||||||
worker host profiles of the deployment manager's configuration file:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
Controller node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: controller-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:c3:00.0-nvme-1
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
activeinterface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
||||||
|
|
||||||
Worker node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: compute-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
boardManagement:
|
|
||||||
credentials:
|
|
||||||
password:
|
|
||||||
secret: bmc-secret
|
|
||||||
type: dynamic
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0
|
|
||||||
clockSynchronization: ntp
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
interface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
||||||
|
@ -209,80 +209,3 @@ Executing the dcmanager subcloud reinstall command in the Central Cloud:
|
|||||||
|
|
||||||
- For more information on bootstrapping and deploying, see the procedures
|
- For more information on bootstrapping and deploying, see the procedures
|
||||||
listed under :ref:`install-a-subcloud`.
|
listed under :ref:`install-a-subcloud`.
|
||||||
|
|
||||||
- Add static route for nodes in subcloud to access openldap service.
|
|
||||||
|
|
||||||
In DC system, openldap service is running on Central Cloud. In order for the nodes
|
|
||||||
in the subclouds to access openldap service, such as ssh to the nodes as openldap
|
|
||||||
users, a static route to the System Controller is required to be added in these
|
|
||||||
nodes. This applies to controller nodes, worker nodes and storage nodes (nodes
|
|
||||||
that have sssd running).
|
|
||||||
|
|
||||||
The static route can be added on each of the nodes in the subcloud using system
|
|
||||||
CLI.
|
|
||||||
|
|
||||||
The following examples show how to add the static route in controller node and
|
|
||||||
worker node:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
system host-route-add controller-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
system host-route-add compute-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
|
|
||||||
The static route can also be added using Deployment Manager by adding the route
|
|
||||||
in its configuration file.
|
|
||||||
|
|
||||||
The following examples show adding the route configuration in controller and
|
|
||||||
worker host profiles of the deployment manager's configuration file:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
Controller node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: controller-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:c3:00.0-nvme-1
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
activeinterface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
||||||
|
|
||||||
Worker node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: compute-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
boardManagement:
|
|
||||||
credentials:
|
|
||||||
password:
|
|
||||||
secret: bmc-secret
|
|
||||||
type: dynamic
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0
|
|
||||||
clockSynchronization: ntp
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
interface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
@ -82,83 +82,6 @@ components and produces a 'Prestaging ISO'.
|
|||||||
- For more information on bootstrapping and deploying, see the procedures
|
- For more information on bootstrapping and deploying, see the procedures
|
||||||
listed under :ref:`install-a-subcloud`.
|
listed under :ref:`install-a-subcloud`.
|
||||||
|
|
||||||
- Add static route for nodes in subcloud to access openldap service.
|
|
||||||
|
|
||||||
In DC system, openldap service is running on Central Cloud. In order for the nodes
|
|
||||||
in the subclouds to access openldap service, such as ssh to the nodes as openldap
|
|
||||||
users, a static route to the System Controller is required to be added in these
|
|
||||||
nodes. This applies to controller nodes, worker nodes and storage nodes (nodes
|
|
||||||
that have sssd running).
|
|
||||||
|
|
||||||
The static route can be added on each of the nodes in the subcloud using system
|
|
||||||
CLI.
|
|
||||||
|
|
||||||
The following examples show how to add the static route in controller node and
|
|
||||||
worker node:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
system host-route-add controller-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
system host-route-add compute-0 mgmt0 <Central Cloud mgmt subnet> 64 <Gateway IP address>
|
|
||||||
|
|
||||||
The static route can also be added using Deployment Manager by adding the route
|
|
||||||
in its configuration file.
|
|
||||||
|
|
||||||
The following examples show adding the route configuration in controller and
|
|
||||||
worker host profiles of the deployment manager's configuration file:
|
|
||||||
|
|
||||||
.. code-block:: none
|
|
||||||
|
|
||||||
Controller node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: controller-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:c3:00.0-nvme-1
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
activeinterface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
||||||
|
|
||||||
Worker node:
|
|
||||||
---
|
|
||||||
apiVersion: starlingx.windriver.com/v1
|
|
||||||
kind: HostProfile
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
controller-tools.k8s.io: "1.0"
|
|
||||||
name: compute-0-profile
|
|
||||||
namespace: deployment
|
|
||||||
spec:
|
|
||||||
administrativeState: unlocked
|
|
||||||
boardManagement:
|
|
||||||
credentials:
|
|
||||||
password:
|
|
||||||
secret: bmc-secret
|
|
||||||
type: dynamic
|
|
||||||
bootDevice: /dev/disk/by-path/pci-0000:00:1f.2-ata-1.0
|
|
||||||
clockSynchronization: ntp
|
|
||||||
console: ttyS0,115200n8
|
|
||||||
installOutput: text
|
|
||||||
......
|
|
||||||
routes:
|
|
||||||
- gateway: <Gateway IP address>
|
|
||||||
interface: mgmt0
|
|
||||||
metric: 1
|
|
||||||
prefix: 64
|
|
||||||
subnet: <Central Cloud mgmt subnet>
|
|
||||||
|
|
||||||
.. _local-install-bundle-section:
|
.. _local-install-bundle-section:
|
||||||
|
|
||||||
--------------------
|
--------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user