Release Notes 6.1 -- New Features (Fuel)

This commit provides RN for the following
features:

- granular task-based deployment
- rendering graph
- network verification before deployment
- remove node from inventory
- role operations

Change-Id: I5bca9c6c2982c2d9c571e438658e9bfece03dabd
Implements: blueprint granular-deployment-based-on-tasks
Related-Bug: 1415520
Implements: blueprint remove-node-from-fuel-inventory
This commit is contained in:
Irina Povolotskaya
2015-05-13 13:16:14 +03:00
parent d065cf7955
commit b5f7aa8003
8 changed files with 69 additions and 9 deletions

View File

@@ -84,7 +84,7 @@ listing of samples:
* GET /v2/samples
.. note::
When requesting the API, you must use the :option:`limit` option not
When requesting the API, you must use the ``limit`` option not
to overload the service by retrieving too much data.
|

View File

@@ -36,12 +36,12 @@ instances.
* - cinder-volume
- RPC
- storage-cinder
- db, amqp, :ref:`storage <storage>`
- db, amqp, :ref:`storage <cinder-storage>`
- active/active (Ceph backend)
n/a (LVM backend)
.. _storage:
.. _cinder-storage:
Cinder can use different block storage backends like LVM or Ceph.

View File

@@ -54,6 +54,8 @@ and `Upgrade and OpenStack environment to a new major release
.. include:: /pages/release-notes/v6-1/new-features/200-nodes.rst
.. include:: /pages/release-notes/v6-1/new-features/heat.rst
.. include:: /pages/release-notes/v6-1/new-features/granular-deploy.rst
.. include:: /pages/release-notes/v6-1/new-features/remove-node-inventory.rst
.. include:: /pages/release-notes/v6-1/new-features/verify-net.rst
.. include:: /pages/release-notes/v6-1/new-features/base-os-role.rst
.. include:: /pages/release-notes/v6-1/new-features/mos-separate-from-fuel.rst
.. include:: /pages/release-notes/v6-1/new-features/patch-openstack.rst
@@ -70,6 +72,8 @@ and `Upgrade and OpenStack environment to a new major release
.. include:: /pages/release-notes/v6-1/new-features/vmware-ui-settings-tab.rst
.. include:: /pages/release-notes/v6-1/new-features/ceilometer-vcenter.rst
.. include:: /pages/release-notes/v6-1/new-features/mellanox-support.rst
.. include:: /pages/release-notes/v6-1/new-features/role-operations.rst
Additional Information

View File

@@ -1,8 +1,22 @@
Granular deployment based on plugable tasks
-------------------------------------------
Granular deployment based on tasks
----------------------------------
In earlier releases,
only one task (``site.pp``) was ran.
Fuel 6.1 provides
`granular deployment <https://blueprints.launchpad.net/fuel/+spec/granular-deployment-based-on-tasks>`_
based on tasks.
It allows to extend
deployment scenario, since it is
not required to patch puppet manifests anymore.
Now you can use the set of tasks instead; execution
order is calculated with resolving task dependencies graph.
For instructions, see :ref:`Task-based deployment <task-based-deploy>`.
Note, that you can not only
form your deployment criteria,
but also render graphs;
see :ref:`Graph representation <render-graph>` for more details.
See `Fuel - Task-based Deployment of OpenStack components
<https://mirantis.jira.com/browse/PROD-70>`_
and `Granular deployment execution based on plugable tasks
<https://blueprints.launchpad.net/fuel/+spec/granular-deployment-based-on-tasks>`_.

View File

@@ -0,0 +1,11 @@
Nodes can be removed from Fuel inventory
----------------------------------------
If the node is dead or there is need
to remove it from the cluster,
you can now move it right from the Fuel inventory.
See :ref:`Assign a role or roles to each node server <assign-roles-ug>`
For instructions on deleting any node from inventory
using the
Fuel CLI, see :ref:`Remove a node from Fuel DB <remove-inv>`.

View File

@@ -0,0 +1,15 @@
.. _role-operations:
Role operations with Nailgun REST API and Fuel Client
-----------------------------------------------------
Now you can create, update or delete roles
using :ref:`Nailgun <nailgun-term>`
REST API and Fuel Client; more details
can be found in
:ref:`Role operations <role-ops-user-guide>`
section.
For Fuel CLI command reference, see
:ref:`Roles operations commands <roles-operations>`.

View File

@@ -0,0 +1,15 @@
The Fuel web UI reminds about network verification before deployment
--------------------------------------------------------------------
The Fuel web UI now provides messages
for network verification when you try to click **Deploy**
button:
* if you forgot to verify networks
* if the verification failed
* if verification is in progress
See :ref:`Verify networks <verify-networks-ug>` for more details and screenshots.

View File

@@ -1,3 +1,4 @@
.. _role-ops-user-guide:
Role operations
================