ironic/doc/source/contributor/faq.rst
melissaml c153b345bc Change openstack-dev to openstack-discuss
Mailinglists have been updated. Openstack-discuss replaces openstack-dev.

Change-Id: Ibc92c2d7e9d5a037b26c9001da1b64e903d89504
2018-12-14 20:58:23 +08:00

143 lines
5.4 KiB
ReStructuredText

.. _faq:
==========================================
Developer FAQ (frequently asked questions)
==========================================
Here are some answers to frequently-asked questions from IRC and
elsewhere.
.. contents::
:local:
:depth: 2
How do I...
===========
...create a migration script template?
--------------------------------------
Using the ``ironic-dbsync revision`` command, e.g::
$ cd ironic
$ tox -evenv -- ironic-dbsync revision -m \"create foo table\"
It will create an empty alembic migration. For more information see the
`alembic documentation`_.
.. _`alembic documentation`: http://alembic.zzzcomputing.com/en/latest/tutorial.html#create-a-migration-script
.. _faq_release_note:
...know if a release note is needed for my change?
--------------------------------------------------
`Reno documentation`_ contains a description of what can be added to each
section of a release note. If, after reading this, you're still unsure about
whether to add a release note for your change or not, keep in mind that it is
intended to contain information for deployers, so changes to unit tests or
documentation are unlikely to require one.
...create a new release note?
-----------------------------
By running ``reno`` command via tox, e.g::
$ tox -e venv -- reno new version-foo
venv create: /home/foo/ironic/.tox/venv
venv installdeps: -r/home/foo/ironic/test-requirements.txt
venv develop-inst: /home/foo/ironic
venv runtests: PYTHONHASHSEED='0'
venv runtests: commands[0] | reno new version-foo
Created new notes file in releasenotes/notes/version-foo-ecb3875dc1cbf6d9.yaml
venv: commands succeeded
congratulations :)
$ git status
On branch test
Untracked files:
(use "git add <file>..." to include in what will be committed)
releasenotes/notes/version-foo-ecb3875dc1cbf6d9.yaml
Then edit the result file. Note that:
- we prefer to use present tense in release notes. For example, a
release note should say "Adds support for feature foo", not "Added support
for feature foo". (We use 'adds' instead of 'add' because grammatically,
it is "ironic adds support", not "ironic add support".)
- any variant of English spelling (American, British, Canadian, Australian...)
is acceptable. The release note itself should be consistent and not have
different spelling variants of the same word.
For more information see the `reno documentation`_.
.. _`reno documentation`: https://docs.openstack.org/reno/latest/user/usage.html
...update a release note?
-------------------------
If this is a release note that pertains to something that was fixed on master
or an intermediary release (during a development cycle, that hasn't been
branched yet), you can go ahead and update it by submitting a patch.
If it is the release note of an ironic release that has branched, `it can be
updated
<https://docs.openstack.org/reno/latest/user/usage.html#updating-stable-branch-release-notes>`_
but we will only allow it in extenuating circumstances. (It can be
updated by *only* updating the file in that branch. DO NOT update the file
in master and cherry-pick it. If you do, `see how the mess was cleaned up
<https://storyboard.openstack.org/#!/story/1670401>`_.)
...get a decision on something?
-------------------------------
You have an issue and would like a decision to be made. First, make sure
that the issue hasn't already been addressed, by looking at documentation,
stories, specifications, or asking. Information and links can be found on the
`Ironic wiki`_ page.
There are several ways to solicit comments and opinions:
* bringing it up at the `weekly Ironic meeting`_
* bringing it up on IRC_
* bringing it up on the `mailing list`_ (add "[Ironic]" to the Subject of the
email)
If there are enough core folks at the weekly meeting, after discussing an
issue, voting could happen and a decision could be made.
The problem with IRC or the weekly meeting is that feedback will only
come from the people that are actually present.
To inform (and solicit feedback from) more people about an issue,
the preferred process is:
#. bring it up on the mailing list
#. after some period of time has elapsed (and depending on the
thread activity), someone should propose a solution via gerrit.
(E.g. the person that started the thread if no one else steps up.)
The proposal should be made in the git repository that is associated
with the issue. (For instance, this decision process was proposed as a
documentation patch to the ironic repository.)
#. In the email thread, don't forget to provide a link to the proposed patch!
#. The discussion then moves to the proposed patch. If this is a big
decision, we could declare that some percentage of the cores should
vote on it before landing it.
(This process was suggested in an email thread about
`process for making decisions`_.)
.. _Ironic wiki: https://wiki.openstack.org/wiki/Ironic
.. _weekly Ironic meeting: https://wiki.openstack.org/wiki/Meetings/Ironic
.. _IRC: https://wiki.openstack.org/wiki/Ironic#IRC
.. _mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-discuss
.. _process for making decisions: http://lists.openstack.org/pipermail/openstack-dev/2016-May/095460.html
...add support for GMRs to new executables and extending the GMR?
-----------------------------------------------------------------
For more information, see the
`oslo.reports documentation <https://docs.openstack.org/oslo.reports/latest/user/usage.html>`_
page.