OpenStack Baremetal (Ironic) Specifications
Find a file
Jay Faulkner 3b452317f1 Add 2026.1 workitems to index
This was missed when the spec was posted.

Change-Id: I4ed45674ab5e03d6db5a7ec06403bc2bf3bfacbc
Signed-off-by: Jay Faulkner <jay@jvf.cc>
2025-11-06 09:48:14 -08:00
doc/source Add 2026.1 workitems to index 2025-11-06 09:48:14 -08:00
priorities 2026.1 Ironic work items 2025-11-05 08:53:50 -08:00
specs Update standalone networking initial conditions 2025-10-02 16:37:38 -04:00
tests Proposal for a new release model 2020-05-15 11:22:40 +02:00
.gitignore Switch tox unit test command to use ostestr 2018-03-13 10:08:36 -07:00
.gitreview OpenDev Migration Patch 2019-04-19 19:47:56 +00:00
.pre-commit-config.yaml enable sphinx-lint on priorities and specs 2025-01-28 14:09:51 -05:00
.stestr.conf Switch tox unit test command to use ostestr 2018-03-13 10:08:36 -07:00
.zuul.yaml import zuul job settings from project-config 2018-08-16 09:43:00 -04:00
LICENSE Initial commit 2014-05-22 15:51:33 -07:00
README.rst Replace http with https for doc links 2017-09-08 08:49:27 +00:00
requirements.txt Switch to newer openstackdocstheme version 2020-05-24 15:15:05 +02:00
setup.cfg Graphical Console Support 2025-02-09 21:23:18 +00:00
setup.py Initial commit 2014-05-22 15:51:33 -07:00
test-requirements.txt switch lints to using pre-commit 2024-11-09 12:44:51 -05:00
tox.ini enable sphinx-lint on priorities and specs 2025-01-28 14:09:51 -05:00

========================
Team and repository tags
========================

.. image:: https://governance.openstack.org/tc/badges/ironic-specs.svg
    :target: https://governance.openstack.org/tc/reference/tags/index.html

.. Change things from this point on

===============================================
OpenStack Baremetal Provisioning Specifications
===============================================

This git repository is used to hold approved design specifications for
additions to the Baremetal Provisioning program, and in particular, the Ironic
project.  Reviews of the specs are done in gerrit, using a similar workflow to
how we review and merge changes to the code itself.

The layout of this repository is::

  specs/approved/
  specs/backlog/
  specs/not-implemented/
  specs/<release>/
  specs/<juno|kilo|liberty>-implemented/

There are also placeholder directories for old links that have been moved.

Specifications must follow the template which can be found at
`specs/template.rst`.

Specifications are proposed by adding them to the `specs/approved` directory,
adding a soft link to it from the `specs/not-implemented` directory, and
posting it for review. When a specification is fully implemented, the link in
`specs/not-implemented` directory should be moved to the appropriate
`specs/<release>` directory. Not all approved specifications will get
fully implemented.

Starting with the Mitaka development cycle, all approved specifications
(implemented and not-implemented) will reside in the `specs/approved`
directory.

Also starting with the Mitaka development cycle, our Launchpad bug tracking
system is used for tracking the work related to a specification. (This replaces
the use of Launchpad blueprints). The bug should be tagged with 'rfe', its
title should be prefixed with '[RFE]' and the Importance should be set to
'Wishlist'. For existing RFE bugs, see::

  https://bugs.launchpad.net/ironic/+bugs?field.tag=rfe

Prior to the Juno development cycle, this repository was not used for spec
reviews.  Reviews prior to Juno were completed entirely through Launchpad
blueprints::

  https://blueprints.launchpad.net/ironic

For more information about working with gerrit, see::

  https://docs.openstack.org/infra/manual/developers.html#development-workflow

To validate that the specification is syntactically correct (i.e. get more
confidence in the Jenkins result), please execute the following command::

  $ tox

After running ``tox``, the documentation will be available for viewing in HTML
format in the ``doc/build/`` directory.

To quickly preview just the rst syntax rendering (without Sphinx features)
of a single spec file execute the following command::

    $ tox -evenv rst2html.py <path-to-your-spec.rst> <path-to-output.html>

and open ``<path-to-output.html>`` in your browser.
Running full ``tox`` is still advised before submitting your patch.