Restore architecture.rst with redirect notice to overview
The content from architecture.rst was moved to install/get_started.rst and merged under a new heading "Overview of Ironic". To avoid breaking links and search engine results pointing to the old location, this patch restores architecture.rst with a redirect notice to the new location. Partial-Bug: #2072353 Change-Id: I950713434132acc5b225a39c0e4cdd724691f9e6
This commit is contained in:

committed by
Julia Kreger

parent
11f7353a92
commit
f78a8ff092
@@ -1,6 +1,6 @@
|
||||
=========================
|
||||
REST API Conceptual Guide
|
||||
=========================
|
||||
===============================
|
||||
REST API Versioning for Ironic
|
||||
===============================
|
||||
|
||||
Versioning
|
||||
==========
|
||||
|
@@ -1,10 +1,26 @@
|
||||
===========================
|
||||
Bare Metal service overview
|
||||
Overview of Ironic
|
||||
===========================
|
||||
|
||||
The Bare Metal service, codenamed ``ironic``, is a collection of components
|
||||
that provides support to manage and provision physical machines.
|
||||
|
||||
Why Provision Bare Metal
|
||||
--------------------------
|
||||
|
||||
Here are a few use-cases for bare metal (physical server) provisioning in
|
||||
cloud; there are doubtless many more interesting ones:
|
||||
|
||||
- High-performance computing clusters
|
||||
- Computing tasks that require access to hardware devices which can't be
|
||||
virtualized
|
||||
- Database hosting (some databases run poorly in a hypervisor)
|
||||
- Single tenant, dedicated hardware for performance, security, dependability
|
||||
and other regulatory requirements
|
||||
- Or, rapidly deploying a cloud infrastructure
|
||||
|
||||
|
||||
|
||||
Bare Metal service components
|
||||
-----------------------------
|
||||
|
||||
@@ -45,30 +61,6 @@ are very similar to other OpenStack services:
|
||||
implementation as that of the Compute service, but that is not a requirement.
|
||||
Used to implement RPC between ironic-api and ironic-conductor.
|
||||
|
||||
Deployment architecture
|
||||
-----------------------
|
||||
|
||||
The Bare Metal RESTful API service is used to enroll hardware that the Bare
|
||||
Metal service will manage. A cloud administrator usually registers it,
|
||||
specifying their attributes such as MAC addresses and IPMI credentials.
|
||||
There can be multiple instances of the API service.
|
||||
|
||||
The *ironic-conductor* process does the bulk of the work. For security
|
||||
reasons, it is advisable to place it on an isolated host, since it is the only
|
||||
service that requires access to both the data plane and IPMI control plane.
|
||||
|
||||
There can be multiple instances of the conductor service to support
|
||||
various class of drivers and also to manage fail over. Instances of the
|
||||
conductor service should be on separate nodes. Each conductor can itself run
|
||||
many drivers to operate heterogeneous hardware. This is depicted in the
|
||||
following figure.
|
||||
|
||||
.. figure:: ../images/deployment_architecture_2.png
|
||||
:alt: Deployment Architecture
|
||||
|
||||
The API exposes a list of supported drivers and the names of conductor hosts
|
||||
servicing them.
|
||||
|
||||
Interaction with OpenStack components
|
||||
-------------------------------------
|
||||
|
||||
@@ -92,6 +84,7 @@ other OpenStack services. This includes:
|
||||
- the OpenStack Object Storage (``swift``) provides temporary storage
|
||||
for the configdrive, user images, deployment logs and inspection data.
|
||||
|
||||
|
||||
Logical architecture
|
||||
--------------------
|
||||
|
||||
@@ -117,6 +110,7 @@ and other resource needs to provision a bare metal instance.
|
||||
See :ref:`understanding-deployment` for a more detailed breakdown of
|
||||
a typical deployment process.
|
||||
|
||||
|
||||
Associated projects
|
||||
-------------------
|
||||
|
||||
@@ -146,3 +140,255 @@ diskimage-builder_
|
||||
.. _remote procedure call (RPC): https://en.wikipedia.org/wiki/Remote_procedure_call
|
||||
.. _WSGI: https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface
|
||||
.. _diskimage-builder: https://docs.openstack.org/diskimage-builder/latest/
|
||||
|
||||
|
||||
Key Technologies for Bare Metal Hosting
|
||||
=======================================
|
||||
|
||||
Preboot Execution Environment (PXE)
|
||||
-----------------------------------
|
||||
PXE is part of the Wired for Management (WfM) specification developed by Intel
|
||||
and Microsoft. The PXE enables system's BIOS and network interface card (NIC)
|
||||
to bootstrap a computer from the network in place of a disk. Bootstrapping is
|
||||
the process by which a system loads the OS into local memory so that it can be
|
||||
executed by the processor. This capability of allowing a system to boot over a
|
||||
network simplifies server deployment and server management for administrators.
|
||||
|
||||
Dynamic Host Configuration Protocol (DHCP)
|
||||
------------------------------------------
|
||||
DHCP is a standardized networking protocol used on Internet Protocol (IP)
|
||||
networks for dynamically distributing network configuration parameters, such
|
||||
as IP addresses for interfaces and services. Using PXE, the BIOS uses DHCP to
|
||||
obtain an IP address for the network interface and to locate the server that
|
||||
stores the network bootstrap program (NBP).
|
||||
|
||||
Network Bootstrap Program (NBP)
|
||||
-------------------------------
|
||||
NBP is equivalent to GRUB (GRand Unified Bootloader) or LILO (LInux LOader) -
|
||||
loaders which are traditionally used in local booting. Like the boot program
|
||||
in a hard drive environment, the NBP is responsible for loading the OS kernel
|
||||
into memory so that the OS can be bootstrapped over a network.
|
||||
|
||||
Trivial File Transfer Protocol (TFTP)
|
||||
-------------------------------------
|
||||
TFTP is a simple file transfer protocol that is generally used for automated
|
||||
transfer of configuration or boot files between machines in a local
|
||||
environment. In a PXE environment, TFTP is used to download NBP over the
|
||||
network using information from the DHCP server.
|
||||
|
||||
Intelligent Platform Management Interface (IPMI)
|
||||
------------------------------------------------
|
||||
IPMI is a standardized computer system interface used by system administrators
|
||||
for out-of-band management of computer systems and monitoring of their
|
||||
operation. It is a method to manage systems that may be unresponsive or powered
|
||||
off by using only a network connection to the hardware rather than to an
|
||||
operating system.
|
||||
|
||||
|
||||
.. _understanding-deployment:
|
||||
|
||||
Understanding Bare Metal Deployment
|
||||
===================================
|
||||
|
||||
What happens when a boot instance request comes in? The below diagram walks
|
||||
through the steps involved during the provisioning of a bare metal instance.
|
||||
|
||||
These pre-requisites must be met before the deployment process:
|
||||
|
||||
* Dependent packages to be configured on the Bare Metal service node(s)
|
||||
where ironic-conductor is running like tftp-server, ipmi, grub/ipxe, etc
|
||||
for bare metal provisioning.
|
||||
* Nova must be configured to make use of the bare metal service endpoint
|
||||
and compute driver should be configured to use ironic driver on the Nova
|
||||
compute node(s).
|
||||
* Flavors to be created for the available hardware. Nova must know the flavor
|
||||
to boot from.
|
||||
* Images to be made available in Glance. Listed below are some image types
|
||||
required for successful bare metal deployment:
|
||||
|
||||
- bm-deploy-kernel
|
||||
- bm-deploy-ramdisk
|
||||
- user-image
|
||||
- user-image-vmlinuz
|
||||
- user-image-initrd
|
||||
|
||||
* Hardware to be enrolled via the bare metal API service.
|
||||
|
||||
Deploy Process
|
||||
--------------
|
||||
|
||||
This describes a typical bare metal node deployment within OpenStack using PXE
|
||||
to boot the ramdisk. Depending on the ironic driver interfaces used, some of
|
||||
the steps might be marginally different, however the majority of them will
|
||||
remain the same.
|
||||
|
||||
#. A boot instance request comes in via the Nova API, through the message
|
||||
queue to the Nova scheduler.
|
||||
|
||||
#. Nova scheduler applies filters and finds the eligible hypervisor. The nova
|
||||
scheduler also uses the flavor's ``extra_specs``, such as ``cpu_arch``, to
|
||||
match the target physical node.
|
||||
|
||||
#. Nova compute manager claims the resources of the selected hypervisor.
|
||||
|
||||
#. Nova compute manager creates (unbound) tenant virtual interfaces (VIFs) in
|
||||
the Networking service according to the network interfaces requested in the
|
||||
nova boot request. A caveat here is, the MACs of the ports are going to be
|
||||
randomly generated, and will be updated when the VIF is attached to some
|
||||
node to correspond to the node network interface card's (or bond's) MAC.
|
||||
|
||||
|
||||
#. A spawn task is created by the nova compute which contains all
|
||||
the information such as which image to boot from etc. It invokes the
|
||||
``driver.spawn`` from the virt layer of Nova compute. During the spawn
|
||||
process, the virt driver does the following:
|
||||
|
||||
#. Updates the target ironic node with the information about deploy image,
|
||||
instance UUID, requested capabilities and various flavor properties.
|
||||
|
||||
#. Validates node's power and deploy interfaces, by calling the ironic API.
|
||||
|
||||
#. Attaches the previously created VIFs to the node. Each neutron port can
|
||||
be attached to any ironic port or port group, with port groups having
|
||||
higher priority than ports. On ironic side, this work is done by the
|
||||
network interface. Attachment here means saving the VIF identifier
|
||||
into ironic port or port group and updating VIF MAC to match the port's
|
||||
or port group's MAC, as described in bullet point 4.
|
||||
|
||||
#. Generates config drive, if requested.
|
||||
|
||||
#. Nova's ironic virt driver issues a deploy request via the Ironic API to the
|
||||
Ironic conductor servicing the bare metal node.
|
||||
|
||||
#. Virtual interfaces are plugged in and Neutron API updates DHCP port to
|
||||
set PXE/TFTP options. In case of using ``neutron`` network interface,
|
||||
ironic creates separate provisioning ports in the Networking service, while
|
||||
in case of ``flat`` network interface, the ports created by nova are used
|
||||
both for provisioning and for deployed instance networking.
|
||||
|
||||
#. The ironic node's boot interface prepares (i)PXE configuration and caches
|
||||
deploy kernel and ramdisk.
|
||||
|
||||
#. The ironic node's management interface issues commands to enable network
|
||||
boot of a node.
|
||||
|
||||
#. The ironic node's deploy interface caches the instance image (normal
|
||||
deployment), kernel and ramdisk (``ramdisk`` deploy) or ISO (``ramdisk``
|
||||
deploy with virtual media).
|
||||
|
||||
#. The ironic node's power interface instructs the node to power on.
|
||||
|
||||
#. The node boots the deploy ramdisk.
|
||||
|
||||
#. Depending on the exact driver used, the deploy ramdisk downloads the image
|
||||
from a URL (:ref:`direct-deploy`) or the conductor uses SSH to execute
|
||||
commands (:ref:`ansible-deploy`). The URL can be generated by Swift
|
||||
API-compatible object stores, for example Swift itself or RadosGW, or
|
||||
provided by a user.
|
||||
|
||||
The image deployment is done.
|
||||
|
||||
#. The node's boot interface switches pxe config to refer to instance images
|
||||
(or, in case of local boot, sets boot device to disk), and asks the ramdisk
|
||||
agent to soft power off the node. If the soft power off by the ramdisk agent
|
||||
fails, the bare metal node is powered off via IPMI/BMC call.
|
||||
|
||||
#. The deploy interface triggers the network interface to remove provisioning
|
||||
ports if they were created, and binds the tenant ports to the node if not
|
||||
already bound. Then the node is powered on.
|
||||
|
||||
.. note:: There are 2 power cycles during bare metal deployment; the
|
||||
first time the node is powered-on when ramdisk is booted, the
|
||||
second time after the image is deployed.
|
||||
|
||||
#. The bare metal node's provisioning state is updated to ``active``.
|
||||
|
||||
Below is the diagram that describes the above process.
|
||||
|
||||
.. graphviz::
|
||||
|
||||
digraph "Deployment Steps" {
|
||||
|
||||
node [shape=box, style=rounded, fontsize=10];
|
||||
edge [fontsize=10];
|
||||
|
||||
/* cylinder shape works only in graphviz 2.39+ */
|
||||
{ rank=same; node [shape=cylinder]; "Nova DB"; "Ironic DB"; }
|
||||
{ rank=same; "Nova API"; "Ironic API"; }
|
||||
{ rank=same; "Nova Message Queue"; "Ironic Message Queue"; }
|
||||
{ rank=same; "Ironic Conductor"; "TFTP Server"; }
|
||||
{ rank=same; "Deploy Interface"; "Boot Interface"; "Power Interface";
|
||||
"Management Interface"; }
|
||||
{ rank=same; "Glance"; "Neutron"; }
|
||||
"Bare Metal Nodes" [shape=box3d];
|
||||
|
||||
"Nova API" -> "Nova Message Queue" [label=" 1"];
|
||||
"Nova Message Queue" -> "Nova Conductor" [dir=both];
|
||||
"Nova Message Queue" -> "Nova Scheduler" [label=" 2"];
|
||||
"Nova Conductor" -> "Nova DB" [dir=both, label=" 3"];
|
||||
"Nova Message Queue" -> "Nova Compute" [dir=both];
|
||||
"Nova Compute" -> "Neutron" [label=" 4"];
|
||||
"Nova Compute" -> "Nova Ironic Virt Driver" [label=5];
|
||||
"Nova Ironic Virt Driver" -> "Ironic API" [label=6];
|
||||
"Ironic API" -> "Ironic Message Queue";
|
||||
"Ironic Message Queue" -> "Ironic Conductor" [dir=both];
|
||||
"Ironic API" -> "Ironic DB" [dir=both];
|
||||
"Ironic Conductor" -> "Ironic DB" [dir=both, label=16];
|
||||
"Ironic Conductor" -> "Boot Interface" [label="8, 14"];
|
||||
"Ironic Conductor" -> "Management Interface" [label=" 9"];
|
||||
"Ironic Conductor" -> "Deploy Interface" [label=10];
|
||||
"Deploy Interface" -> "Network Interface" [label="7, 15"];
|
||||
"Ironic Conductor" -> "Power Interface" [label=11];
|
||||
"Ironic Conductor" -> "Glance";
|
||||
"Network Interface" -> "Neutron";
|
||||
"Power Interface" -> "Bare Metal Nodes";
|
||||
"Management Interface" -> "Bare Metal Nodes";
|
||||
"TFTP Server" -> "Bare Metal Nodes" [label=12];
|
||||
"Ironic Conductor" -> "Bare Metal Nodes" [style=dotted, label=13];
|
||||
"Boot Interface" -> "TFTP Server";
|
||||
|
||||
}
|
||||
|
||||
|
||||
The following two examples describe what ironic is doing in more detail,
|
||||
leaving out the actions performed by nova and some of the more advanced
|
||||
options.
|
||||
|
||||
.. _direct-deploy-example:
|
||||
|
||||
Example: PXE Boot and Direct Deploy Process
|
||||
---------------------------------------------
|
||||
|
||||
This process is how :ref:`direct-deploy` works.
|
||||
|
||||
.. figure:: ./../images/direct-deploy.svg
|
||||
:width: 100%
|
||||
|
||||
(From a `talk`_ and `slides`_)
|
||||
|
||||
.. _talk: https://www.openstack.org/summit/vancouver-2015/summit-videos/presentation/isn-and-039t-it-ironic-the-bare-metal-cloud
|
||||
.. _slides: http://www.slideshare.net/devananda1/isnt-it-ironic-managing-a-bare-metal-cloud-osl-tes-2015
|
||||
|
||||
Deployment architecture
|
||||
-----------------------
|
||||
|
||||
The Bare Metal RESTful API service is used to enroll hardware that the Bare
|
||||
Metal service will manage. A cloud administrator usually registers it,
|
||||
specifying their attributes such as MAC addresses and IPMI credentials.
|
||||
There can be multiple instances of the API service.
|
||||
|
||||
The *ironic-conductor* process does the bulk of the work. For security
|
||||
reasons, it is advisable to place it on an isolated host, since it is the only
|
||||
service that requires access to both the data plane and IPMI control plane.
|
||||
|
||||
There can be multiple instances of the conductor service to support
|
||||
various class of drivers and also to manage fail over. Instances of the
|
||||
conductor service should be on separate nodes. Each conductor can itself run
|
||||
many drivers to operate heterogeneous hardware. This is depicted in the
|
||||
following figure.
|
||||
|
||||
.. figure:: ../images/deployment_architecture_2.png
|
||||
:alt: Deployment Architecture
|
||||
|
||||
The API exposes a list of supported drivers and the names of conductor hosts
|
||||
servicing them.
|
||||
|
@@ -2,255 +2,9 @@
|
||||
Understanding Bare Metal service
|
||||
================================
|
||||
|
||||
.. TODO: this file needs to be cleaned up
|
||||
This page has moved.
|
||||
|
||||
Why Provision Bare Metal
|
||||
========================
|
||||
|
||||
Here are a few use-cases for bare metal (physical server) provisioning in
|
||||
cloud; there are doubtless many more interesting ones:
|
||||
|
||||
- High-performance computing clusters
|
||||
- Computing tasks that require access to hardware devices which can't be
|
||||
virtualized
|
||||
- Database hosting (some databases run poorly in a hypervisor)
|
||||
- Single tenant, dedicated hardware for performance, security, dependability
|
||||
and other regulatory requirements
|
||||
- Or, rapidly deploying a cloud infrastructure
|
||||
|
||||
Conceptual Architecture
|
||||
=======================
|
||||
|
||||
The following diagram shows the relationships and how all services come into
|
||||
play during the provisioning of a physical server. (Note that Ceilometer and
|
||||
Swift can be used with Ironic, but are missing from this diagram.)
|
||||
|
||||
|
||||
.. figure:: ../images/conceptual_architecture.png
|
||||
:alt: ConceptualArchitecture
|
||||
|
||||
|
||||
Key Technologies for Bare Metal Hosting
|
||||
=======================================
|
||||
|
||||
Preboot Execution Environment (PXE)
|
||||
-----------------------------------
|
||||
PXE is part of the Wired for Management (WfM) specification developed by Intel
|
||||
and Microsoft. The PXE enables system's BIOS and network interface card (NIC)
|
||||
to bootstrap a computer from the network in place of a disk. Bootstrapping is
|
||||
the process by which a system loads the OS into local memory so that it can be
|
||||
executed by the processor. This capability of allowing a system to boot over a
|
||||
network simplifies server deployment and server management for administrators.
|
||||
|
||||
Dynamic Host Configuration Protocol (DHCP)
|
||||
------------------------------------------
|
||||
DHCP is a standardized networking protocol used on Internet Protocol (IP)
|
||||
networks for dynamically distributing network configuration parameters, such
|
||||
as IP addresses for interfaces and services. Using PXE, the BIOS uses DHCP to
|
||||
obtain an IP address for the network interface and to locate the server that
|
||||
stores the network bootstrap program (NBP).
|
||||
|
||||
Network Bootstrap Program (NBP)
|
||||
-------------------------------
|
||||
NBP is equivalent to GRUB (GRand Unified Bootloader) or LILO (LInux LOader) -
|
||||
loaders which are traditionally used in local booting. Like the boot program
|
||||
in a hard drive environment, the NBP is responsible for loading the OS kernel
|
||||
into memory so that the OS can be bootstrapped over a network.
|
||||
|
||||
Trivial File Transfer Protocol (TFTP)
|
||||
-------------------------------------
|
||||
TFTP is a simple file transfer protocol that is generally used for automated
|
||||
transfer of configuration or boot files between machines in a local
|
||||
environment. In a PXE environment, TFTP is used to download NBP over the
|
||||
network using information from the DHCP server.
|
||||
|
||||
Intelligent Platform Management Interface (IPMI)
|
||||
------------------------------------------------
|
||||
IPMI is a standardized computer system interface used by system administrators
|
||||
for out-of-band management of computer systems and monitoring of their
|
||||
operation. It is a method to manage systems that may be unresponsive or powered
|
||||
off by using only a network connection to the hardware rather than to an
|
||||
operating system.
|
||||
|
||||
.. _understanding-deployment:
|
||||
|
||||
Understanding Bare Metal Deployment
|
||||
===================================
|
||||
|
||||
What happens when a boot instance request comes in? The below diagram walks
|
||||
through the steps involved during the provisioning of a bare metal instance.
|
||||
|
||||
These pre-requisites must be met before the deployment process:
|
||||
|
||||
* Dependent packages to be configured on the Bare Metal service node(s)
|
||||
where ironic-conductor is running like tftp-server, ipmi, grub/ipxe, etc
|
||||
for bare metal provisioning.
|
||||
* Nova must be configured to make use of the bare metal service endpoint
|
||||
and compute driver should be configured to use ironic driver on the Nova
|
||||
compute node(s).
|
||||
* Flavors to be created for the available hardware. Nova must know the flavor
|
||||
to boot from.
|
||||
* Images to be made available in Glance. Listed below are some image types
|
||||
required for successful bare metal deployment:
|
||||
|
||||
- bm-deploy-kernel
|
||||
- bm-deploy-ramdisk
|
||||
- user-image
|
||||
- user-image-vmlinuz
|
||||
- user-image-initrd
|
||||
|
||||
* Hardware to be enrolled via the bare metal API service.
|
||||
|
||||
Deploy Process
|
||||
--------------
|
||||
|
||||
This describes a typical bare metal node deployment within OpenStack using PXE
|
||||
to boot the ramdisk. Depending on the ironic driver interfaces used, some of
|
||||
the steps might be marginally different, however the majority of them will
|
||||
remain the same.
|
||||
|
||||
#. A boot instance request comes in via the Nova API, through the message
|
||||
queue to the Nova scheduler.
|
||||
|
||||
#. Nova scheduler applies filters and finds the eligible hypervisor. The nova
|
||||
scheduler also uses the flavor's ``extra_specs``, such as ``cpu_arch``, to
|
||||
match the target physical node.
|
||||
|
||||
#. Nova compute manager claims the resources of the selected hypervisor.
|
||||
|
||||
#. Nova compute manager creates (unbound) tenant virtual interfaces (VIFs) in
|
||||
the Networking service according to the network interfaces requested in the
|
||||
nova boot request. A caveat here is, the MACs of the ports are going to be
|
||||
randomly generated, and will be updated when the VIF is attached to some
|
||||
node to correspond to the node network interface card's (or bond's) MAC.
|
||||
|
||||
#. A spawn task is created by the nova compute which contains all
|
||||
the information such as which image to boot from etc. It invokes the
|
||||
``driver.spawn`` from the virt layer of Nova compute. During the spawn
|
||||
process, the virt driver does the following:
|
||||
|
||||
#. Updates the target ironic node with the information about deploy image,
|
||||
instance UUID, requested capabilities and various flavor properties.
|
||||
|
||||
#. Validates node's power and deploy interfaces, by calling the ironic API.
|
||||
|
||||
#. Attaches the previously created VIFs to the node. Each neutron port can
|
||||
be attached to any ironic port or port group, with port groups having
|
||||
higher priority than ports. On ironic side, this work is done by the
|
||||
network interface. Attachment here means saving the VIF identifier
|
||||
into ironic port or port group and updating VIF MAC to match the port's
|
||||
or port group's MAC, as described in bullet point 4.
|
||||
|
||||
#. Generates config drive, if requested.
|
||||
|
||||
#. Nova's ironic virt driver issues a deploy request via the Ironic API to the
|
||||
Ironic conductor servicing the bare metal node.
|
||||
|
||||
#. Virtual interfaces are plugged in and Neutron API updates DHCP port to
|
||||
set PXE/TFTP options. In case of using ``neutron`` network interface,
|
||||
ironic creates separate provisioning ports in the Networking service, while
|
||||
in case of ``flat`` network interface, the ports created by nova are used
|
||||
both for provisioning and for deployed instance networking.
|
||||
|
||||
#. The ironic node's boot interface prepares (i)PXE configuration and caches
|
||||
deploy kernel and ramdisk.
|
||||
|
||||
#. The ironic node's management interface issues commands to enable network
|
||||
boot of a node.
|
||||
|
||||
#. The ironic node's deploy interface caches the instance image (normal
|
||||
deployment), kernel and ramdisk (``ramdisk`` deploy) or ISO (``ramdisk``
|
||||
deploy with virtual media).
|
||||
|
||||
#. The ironic node's power interface instructs the node to power on.
|
||||
|
||||
#. The node boots the deploy ramdisk.
|
||||
|
||||
#. Depending on the exact driver used, the deploy ramdisk downloads the image
|
||||
from a URL (:ref:`direct-deploy`) or the conductor uses SSH to execute
|
||||
commands (:ref:`ansible-deploy`). The URL can be generated by Swift
|
||||
API-compatible object stores, for example Swift itself or RadosGW, or
|
||||
provided by a user.
|
||||
|
||||
The image deployment is done.
|
||||
|
||||
#. The node's boot interface switches pxe config to refer to instance images
|
||||
(or, in case of local boot, sets boot device to disk), and asks the ramdisk
|
||||
agent to soft power off the node. If the soft power off by the ramdisk agent
|
||||
fails, the bare metal node is powered off via IPMI/BMC call.
|
||||
|
||||
#. The deploy interface triggers the network interface to remove provisioning
|
||||
ports if they were created, and binds the tenant ports to the node if not
|
||||
already bound. Then the node is powered on.
|
||||
|
||||
.. note:: There are 2 power cycles during bare metal deployment; the
|
||||
first time the node is powered-on when ramdisk is booted, the
|
||||
second time after the image is deployed.
|
||||
|
||||
#. The bare metal node's provisioning state is updated to ``active``.
|
||||
|
||||
Below is the diagram that describes the above process.
|
||||
|
||||
.. graphviz::
|
||||
|
||||
digraph "Deployment Steps" {
|
||||
|
||||
node [shape=box, style=rounded, fontsize=10];
|
||||
edge [fontsize=10];
|
||||
|
||||
/* cylinder shape works only in graphviz 2.39+ */
|
||||
{ rank=same; node [shape=cylinder]; "Nova DB"; "Ironic DB"; }
|
||||
{ rank=same; "Nova API"; "Ironic API"; }
|
||||
{ rank=same; "Nova Message Queue"; "Ironic Message Queue"; }
|
||||
{ rank=same; "Ironic Conductor"; "TFTP Server"; }
|
||||
{ rank=same; "Deploy Interface"; "Boot Interface"; "Power Interface";
|
||||
"Management Interface"; }
|
||||
{ rank=same; "Glance"; "Neutron"; }
|
||||
"Bare Metal Nodes" [shape=box3d];
|
||||
|
||||
"Nova API" -> "Nova Message Queue" [label=" 1"];
|
||||
"Nova Message Queue" -> "Nova Conductor" [dir=both];
|
||||
"Nova Message Queue" -> "Nova Scheduler" [label=" 2"];
|
||||
"Nova Conductor" -> "Nova DB" [dir=both, label=" 3"];
|
||||
"Nova Message Queue" -> "Nova Compute" [dir=both];
|
||||
"Nova Compute" -> "Neutron" [label=" 4"];
|
||||
"Nova Compute" -> "Nova Ironic Virt Driver" [label=5];
|
||||
"Nova Ironic Virt Driver" -> "Ironic API" [label=6];
|
||||
"Ironic API" -> "Ironic Message Queue";
|
||||
"Ironic Message Queue" -> "Ironic Conductor" [dir=both];
|
||||
"Ironic API" -> "Ironic DB" [dir=both];
|
||||
"Ironic Conductor" -> "Ironic DB" [dir=both, label=16];
|
||||
"Ironic Conductor" -> "Boot Interface" [label="8, 14"];
|
||||
"Ironic Conductor" -> "Management Interface" [label=" 9"];
|
||||
"Ironic Conductor" -> "Deploy Interface" [label=10];
|
||||
"Deploy Interface" -> "Network Interface" [label="7, 15"];
|
||||
"Ironic Conductor" -> "Power Interface" [label=11];
|
||||
"Ironic Conductor" -> "Glance";
|
||||
"Network Interface" -> "Neutron";
|
||||
"Power Interface" -> "Bare Metal Nodes";
|
||||
"Management Interface" -> "Bare Metal Nodes";
|
||||
"TFTP Server" -> "Bare Metal Nodes" [label=12];
|
||||
"Ironic Conductor" -> "Bare Metal Nodes" [style=dotted, label=13];
|
||||
"Boot Interface" -> "TFTP Server";
|
||||
|
||||
}
|
||||
|
||||
The following two examples describe what ironic is doing in more detail,
|
||||
leaving out the actions performed by nova and some of the more advanced
|
||||
options.
|
||||
|
||||
.. _direct-deploy-example:
|
||||
|
||||
Example: PXE Boot and Direct Deploy Process
|
||||
---------------------------------------------
|
||||
|
||||
This process is how :ref:`direct-deploy` works.
|
||||
|
||||
.. figure:: ./../images/direct-deploy.svg
|
||||
:width: 100%
|
||||
|
||||
(From a `talk`_ and `slides`_)
|
||||
|
||||
.. _talk: https://www.openstack.org/summit/vancouver-2015/summit-videos/presentation/isn-and-039t-it-ironic-the-bare-metal-cloud
|
||||
.. _slides: http://www.slideshare.net/devananda1/isnt-it-ironic-managing-a-bare-metal-cloud-osl-tes-2015
|
||||
As part of the Ironic documentation improvements, this content has
|
||||
been consolidated. You can now find the updated content in the
|
||||
:doc:`Overview of Ironic </install/get_started>` section.
|
||||
|
||||
|
Reference in New Issue
Block a user