Merge "Improve docs"

This commit is contained in:
Zuul 2021-03-26 10:40:49 +00:00 committed by Gerrit Code Review
commit 12e3483a96
8 changed files with 257 additions and 258 deletions

View File

@ -2,41 +2,14 @@
Building Container Images Building Container Images
========================= =========================
Firstly, ensure kolla is installed or ready for development. Firstly, ensure ``kolla`` is installed.
Then the :command:`kolla-build` command is responsible for building
Docker images.
.. note::
When developing Kolla it can be useful to build images using files located in
a local copy of Kolla. Use the ``tools/build.py`` script instead of
:command:`kolla-build` command in all below instructions.
Generating kolla-build.conf
===========================
Install tox and generate the build configuration. The build configuration is
designed to hold advanced customizations when building images.
If you have already cloned the Kolla Git repository to the ``kolla`` folder,
generate the ``kolla-build.conf`` file using the following steps.
If you don't, you can also run ``kolla-build`` without a
``kolla-build.conf`` or with the file you find in the ``etc_examples``
folder of the Kolla Python package. But you should only do that for
testing purposes, if at all.
.. code-block:: console .. code-block:: console
python3 -m pip install tox python3 -m pip install kolla
cd kolla/
tox -e genconfig
The location of the generated configuration file is Then, the :command:`kolla-build` command is available for building
``etc/kolla/kolla-build.conf``, it can also be copied to ``/etc/kolla``. The Docker images.
default location is one of ``/etc/kolla/kolla-build.conf`` or
``etc/kolla/kolla-build.conf``.
Building kolla images Building kolla images
===================== =====================
@ -47,12 +20,6 @@ In general, images are built like this:
kolla-build kolla-build
* For development, run:
.. code-block:: console
python3 tools/build.py
By default, the above command would build all images based on CentOS image. By default, the above command would build all images based on CentOS image.
The operator can change the base distro with the ``-b`` option: The operator can change the base distro with the ``-b`` option:
@ -61,13 +28,7 @@ The operator can change the base distro with the ``-b`` option:
kolla-build -b ubuntu kolla-build -b ubuntu
* For development, run: There are following distros (bases) available for building images:
.. code-block:: console
python3 tools/build.py -b ubuntu
There are following distros available for building images:
- centos - centos
- debian - debian
@ -85,14 +46,8 @@ command line:
kolla-build keystone kolla-build keystone
* For development, run:
.. code-block:: console
python3 tools/build.py keystone
In this case, the build script builds all images whose name contains the In this case, the build script builds all images whose name contains the
``keystone`` string along with their dependencies. ``keystone`` string, along with their parents.
Multiple names may be specified on the command line: Multiple names may be specified on the command line:
@ -100,23 +55,24 @@ Multiple names may be specified on the command line:
kolla-build keystone nova kolla-build keystone nova
* For development, run: Each string is actually a regular expression so one can do:
.. code-block:: console .. code-block:: console
python3 tools/build.py keystone nova kolla-build ^nova-
The set of images built can be defined as a profile in the ``profiles`` section ``kolla-build`` can be configured via an INI file, canonically named
of ``kolla-build.conf``. Later, profile can be specified by ``--profile`` CLI ``kolla-build.conf`` and placed in ``/etc/kolla``. A custom path to it can be
argument or ``profile`` option in ``kolla-build.conf``. Kolla provides some set via the ``--config-file`` argument. Most CLI arguments can be set via this
pre-defined profiles: config file. Remember to convert the names from hyphenated to underscored.
Run ``kolla-build --help`` to see all available options.
- ``infra`` infrastructure-related images The set of images to build can be defined as a profile in the ``profiles``
- ``main`` core OpenStack images section of ``kolla-build.conf``.
- ``aux`` auxiliary images such as trove, magnum, ironic Then, profile can be specified by ``--profile`` CLI argument or ``profile``
- ``default`` minimal set of images for a working deploy option in ``kolla-build.conf``.
For example, since Magnum requires Heat, add the following profile to For example, since Magnum requires Heat, one could add the following profile to
``profiles`` section in ``kolla-build.conf``: ``profiles`` section in ``kolla-build.conf``:
.. path /etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
@ -125,13 +81,14 @@ For example, since Magnum requires Heat, add the following profile to
[profiles] [profiles]
magnum = magnum,heat magnum = magnum,heat
These images can be built using command line: These images could then be built using command line:
.. code-block:: console .. code-block:: console
kolla-build --profile magnum kolla-build --profile magnum
Or put following line to ``DEFAULT`` section in ``kolla-build.conf`` file: Or putting the following line in the ``DEFAULT`` section in
``kolla-build.conf`` file:
.. path /etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
.. code-block:: ini .. code-block:: ini
@ -148,7 +105,7 @@ repository named ``mykollarepo``:
kolla-build -n mykollarepo --push kolla-build -n mykollarepo --push
To push images to a :kolla-ansible-doc:`local registry To push images to a :kolla-ansible-doc:`local registry
<user/multinode.html#deploy-a-registry>`, use ``--registry`` flag: <user/multinode.html#deploy-a-registry>`, use the ``--registry`` flag:
.. code-block:: console .. code-block:: console
@ -160,29 +117,22 @@ Build OpenStack from source
When building images, there are two methods of the OpenStack install. One is When building images, there are two methods of the OpenStack install. One is
``binary``. Another is ``source``. The ``binary`` means that OpenStack will be ``binary``. Another is ``source``. The ``binary`` means that OpenStack will be
installed from apt/dnf. And the ``source`` means that OpenStack will be installed from apt/dnf. And the ``source`` means that OpenStack will be
installed from source code. The default method of the OpenStack install is installed from upstream sources. The default method of the OpenStack install is
``binary``. It can be changed to ``source`` using the ``-t`` option: ``binary``. It can be changed to ``source`` using the ``-t`` option:
.. code-block:: console .. code-block:: console
kolla-build -t source kolla-build -t source
* For development, run: The locations of OpenStack source code are written in ``kolla-build.conf``.
The source type supports ``url``, ``git``, and ``local``. The location of
.. code-block:: console
python3 tools/build.py -t source
The locations of OpenStack source code are written in
``etc/kolla/kolla-build.conf``.
Now the source type supports ``url``, ``git``, and ``local``. The location of
the ``local`` source type can point to either a directory containing the source the ``local`` source type can point to either a directory containing the source
code or to a tarball of the source. The ``local`` source type permits to make code or to a tarball of the source. The ``local`` source type permits to make
the best use of the Docker cache. the best use of the Docker cache.
The ``etc/kolla/kolla-build.conf`` file looks like: The ``kolla-build.conf`` file could look like this:
.. path etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
.. code-block:: ini .. code-block:: ini
[glance-base] [glance-base]
@ -202,49 +152,49 @@ The ``etc/kolla/kolla-build.conf`` file looks like:
type = local type = local
location = /tmp/ironic.tar.gz location = /tmp/ironic.tar.gz
To build RHEL containers, it is necessary to include registration with RHN
of the container runtime operating system.To obtain a RHN
username/password/pool id, contact Red Hat. Use a template's header block
overrides file, add the following:
.. code-block:: console
RUN subscription-manager register --user=<user-name> \
--password=<password> && subscription-manager attach --pool <pool-id>
.. _dockerfile-customisation: .. _dockerfile-customisation:
Dockerfile Customisation Dockerfile customisation
======================== ========================
As of the Newton release, the ``kolla-build`` tool provides a Jinja2 based The ``kolla-build`` tool provides a Jinja2-based
mechanism which allows operators to customise the Dockerfiles used to generate mechanism which allows operators to customise the Dockerfiles used to generate
Kolla images. Kolla images.
This offers a lot of flexibility on how images are built, for example, This offers a lot of flexibility on how images are built, for example:
installing extra packages as part of the build, tweaking settings, installing installing extra packages as part of the build, tweaking settings or installing
plugins, and numerous other capabilities. Some of these examples are described plugins. Examples of these are described in more detail below.
in more detail below.
.. note:: .. note::
The docker file for each image is found in docker/<image name> directory. The Docker file Jinja2 template for each image is found in subdirectories
of the ``docker`` directory included in the ``kolla`` package.
Generic Customisation Using a different base image
----------------------------
Base image can be specified using ``--base-image``:
.. code-block:: console
kolla-build --base-image <image-identifier>
The ``image-identifier`` accepts any format that Docker accepts when
referencing an image.
Generic customisation
--------------------- ---------------------
Anywhere the line ``{% block ... %}`` appears may be modified. The Kolla Kolla templates are designed such that each Docker file has logical sections
community have added blocks throughout the Dockerfiles where we think they will represented by Jinja2's named ``block`` section directives. These can be
be useful, however, operators are free to submit more if the ones provided are overridden at will by Kolla users.
inadequate.
The following is an example of how an operator would modify the setup steps The following is an example of how an operator would modify the setup steps
within the Horizon Dockerfile. within the Horizon Dockerfile.
First, create a file to contain the customisations, for example: First, create a file to contain the customisations, for example:
``template-overrides.j2``. In this place the following: ``template-overrides.j2``. Fill it with the following contents:
.. code-block:: console .. code-block:: jinja
{% extends parent_template %} {% extends parent_template %}
@ -253,61 +203,78 @@ First, create a file to contain the customisations, for example:
RUN useradd --user-group myuser RUN useradd --user-group myuser
{% endblock %} {% endblock %}
Then rebuild the horizon image, passing the ``--template-override`` argument: Then rebuild the ``horizon`` image, passing the ``--template-override``
argument:
.. code-block:: console .. code-block:: console
kolla-build --template-override template-overrides.j2 horizon kolla-build --template-override template-overrides.j2 ^horizon$
* For development, run:
.. code-block:: console
python3 tools/build.py --template-override template-overrides.j2 horizon
.. note:: .. note::
The above example will replace all contents from the original block. Hence The above example will replace all contents of the original block. Hence,
in many cases one may want to copy the original contents of the block before one may want to copy the original contents of the block before and modify it.
making changes. Do note it makes the customisations ignore changes in Kolla upstream.
More specific functionality such as removing/appending entries is available We recommend users use more specific customisation functionalities, such
for packages, described in the next section. as removing/appending entries for packages. These other customisations are
described in the following sections.
Package Customisation Two block series are of particular interest and are safe to override as they
--------------------- are empty by design.
The top of each Dockerfile includes ``<image_name>_header`` block which can
be used for early customisations, such as RHN registration described later.
The bottom of each Dockerfile includes ``<image_name>_footer`` block which
is intended for image-specific modifications.
Do note to use the underscored name of the image, i.e., replace dashes with
underscores.
All leaf Dockerfiles, i.e. those meant for direct consumption, additionally
have a ``footer`` block which is then guaranteed to exist once at the very
end of the image recipe chain.
RHEL containers and RHN
^^^^^^^^^^^^^^^^^^^^^^^
To build RHEL containers, it is necessary to include registration with RHN
of the container runtime operating system. To obtain a RHN
username/password/pool id, contact Red Hat. Use template's header block in the
overrides file, e.g.:
.. code-block:: jinja
{% extends parent_template %}
{% block base_header %}
RUN subscription-manager register --user=<user-name> \
--password=<password> && subscription-manager attach --pool <pool-id>
{% endblock %}
Packages customisation
----------------------
Packages installed as part of an image build can be overridden, appended to, Packages installed as part of an image build can be overridden, appended to,
and deleted. Taking the Horizon example, the following packages are installed and deleted. Taking the Horizon example, the following packages are installed
as part of a binary install type build: as part of a binary install type build (among others):
* ``openstack-dashboard`` * ``openstack-dashboard``
* ``httpd`` * ``openstack-magnum-ui``
* ``python2-mod_wsgi`` or ``python3-mod_wsgi``
* ``mod_ssl``
* ``gettext``
To add a package to this list, say, ``iproute``, first create a file, To add a package to this list, say, ``iproute``, first create a file,
for example, ``template-overrides.j2``. In this place the following: for example, ``template-overrides.j2``. In it place the following:
.. code-block:: console .. code-block:: jinja
{% extends parent_template %} {% extends parent_template %}
# Horizon # Horizon
{% set horizon_packages_append = ['iproute'] %} {% set horizon_packages_append = ['iproute'] %}
Then rebuild the horizon image, passing the ``--template-override`` argument: Then rebuild the ``horizon`` image, passing the ``--template-override``
argument:
.. code-block:: console .. code-block:: console
kolla-build --template-override template-overrides.j2 horizon kolla-build --template-override template-overrides.j2 ^horizon$
* For development, run:
.. code-block:: console
python3 tools/build.py --template-override template-overrides.j2 horizon
Alternatively ``template_override`` can be set in ``kolla-build.conf``. Alternatively ``template_override`` can be set in ``kolla-build.conf``.
@ -324,64 +291,64 @@ append
remove remove
Remove a package from the default list. Remove a package from the default list.
Using a different base image To remove a package from that list, say ``openstack-magnum-ui``, one would do:
----------------------------
Base-image can be specified by argument ``--base-image``. For example: .. code-block:: jinja
.. code-block:: console {% extends parent_template %}
kolla-build --base-image registry.access.redhat.com/rhel7/rhel --base rhel # Horizon
{% set horizon_packages_remove = ['openstack-magnum-ui'] %}
Plugin Functionality Plugin functionality
-------------------- --------------------
The Dockerfile customisation mechanism is also useful for adding/installing The Dockerfile customisation mechanism is useful for adding/installing
plugins to services. An example of this is Neutron's third party L2 `drivers plugins to services. An example of this is Neutron's third party L2 `drivers
<https://wiki.openstack.org/wiki/Neutron#Plugins>`_. <https://wiki.openstack.org/wiki/Neutron#Plugins>`_.
The bottom of each Dockerfile contains two blocks, ``image_name_footer``, and
``footer``. The ``image_name_footer`` is intended for image specific
modifications, while the ``footer`` can be used to apply a common set of
modifications to every Dockerfile.
For example, to add the ``networking-cisco`` plugin to the ``neutron_server`` For example, to add the ``networking-cisco`` plugin to the ``neutron_server``
image, one may want to add the following to the ``template-override`` file: image, one may be tempted to add the following to the ``template-override``
file:
.. code-block:: console .. warning::
Do NOT do the below. Read on for why.
.. code-block:: jinja
{% extends parent_template %} {% extends parent_template %}
{% block neutron_server_footer %} {% block neutron_server_footer %}
RUN git clone https://opendev.org/x/networking-cisco \ RUN git clone https://opendev.org/x/networking-cisco \
&& pip3 --no-cache-dir install networking-cisco && python3 -m pip --no-cache-dir install networking-cisco
{% endblock %} {% endblock %}
Astute readers may notice there is one problem with this however. Assuming Some readers may notice there is one problem with this, however. Assuming
nothing else in the Dockerfile changes for a period of time, the above ``RUN`` nothing else in the Dockerfile changes for a period of time, the above ``RUN``
statement will be cached by Docker, meaning new commits added to the Git statement will be cached by Docker, meaning new commits added to the Git
repository may be missed on subsequent builds. To solve this the Kolla build repository may be missed on subsequent builds. To solve this, the
tool also supports cloning additional repositories at build time, which will be ``kolla-build`` tool also supports cloning additional repositories at build
automatically made available to the build, within an archive named time, which will be automatically made available to the build, within an
``plugins-archive``. archive named ``plugins-archive``.
.. note:: .. note::
The following is available for source build types only. The following is available for source build types only.
To use this, add a section to ``/etc/kolla/kolla-build.conf`` in the following To use this, add a section to ``kolla-build.conf`` in the following format:
format:
.. path /etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
.. code-block:: ini .. code-block:: ini
[<image>-plugin-<plugin-name>] [<image-name>-plugin-<plugin-name>]
Where ``<image>`` is the image that the plugin should be installed into, and Where ``<image-name>`` is the hyphenated name of the image that the plugin
``<plugin-name>`` is the chosen plugin identifier. should be installed into, and ``<plugin-name>`` is the chosen plugin
identifier.
Continuing with the above example, add the following to Continuing with the above example, one could add the following to
``/etc/kolla/kolla-build.conf``: ``kolla-build.conf``:
.. path /etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
.. code-block:: ini .. code-block:: ini
@ -402,48 +369,47 @@ structure:
The template now becomes: The template now becomes:
.. code-block:: console .. code-block:: jinja
{% block neutron_server_footer %} {% block neutron_server_footer %}
ADD plugins-archive / ADD plugins-archive /
pip3 --no-cache-dir install /plugins/* python3 -m pip --no-cache-dir install /plugins/*
{% endblock %} {% endblock %}
Many of the Dockerfiles already copy the ``plugins-archive`` to the image and Many of the Dockerfiles already copy the ``plugins-archive`` to the image and
install available plugins at build time. install available plugins at build time.
Additions Functionality Additions functionality
----------------------- -----------------------
The Dockerfile customisation mechanism is also useful for adding/installing The Dockerfile customisation mechanism is useful for adding/installing
additions into images. An example of this is adding your jenkins job build additions into images. An example of this is adding your jenkins job build
metadata (say formatted into a jenkins.json file) into the image. metadata (say, formatted into a jenkins.json file) into the image.
Similarly to the plugins mechanism, the Kolla build tool also supports cloning Similarly to the plugins mechanism, the Kolla build tool also supports cloning
additional repositories at build time, which will be automatically made additional repositories at build time, which will be automatically made
available to the build, within an archive named ``additions-archive``. The main available to the build, within an archive named ``additions-archive``. The main
difference between ``plugins-archive`` and ``additions-archive`` is that difference between ``plugins-archive`` and ``additions-archive`` is that
``plugins-archive`` is copied to the relevant images and processed to install ``plugins-archive`` is automatically copied in many images and processed to
available plugins while ``additions-archive`` processing is left to the Kolla install available plugins while ``additions-archive`` processing is left solely
user. to the Kolla user.
.. note:: .. note::
The following is available for source build types only. The following is available for source build types only.
To use this, add a section to ``/etc/kolla/kolla-build.conf`` in the following To use this, add a section to ``kolla-build.conf`` in the following format:
format:
.. path /etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
.. code-block:: ini .. code-block:: ini
[<image>-additions-<additions-name>] [<image>-additions-<additions-name>]
Where ``<image>`` is the image that the plugin should be installed into, and Where ``<image-name>`` is the hyphenated name of the image that the additions
``<additions-name>`` is the chosen additions identifier. should be copied into, and ``<additions-name>`` is the chosen additions
identifier.
Continuing with the above example, add the following to For example, one could add the following to ``kolla-build.conf`` file:
``/etc/kolla/kolla-build.conf`` file:
.. path /etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
.. code-block:: ini .. code-block:: ini
@ -462,33 +428,35 @@ structure:
|__jenkins |__jenkins
Alternatively, it is also possible to create an ``additions-archive.tar`` file Alternatively, it is also possible to create an ``additions-archive.tar`` file
yourself without passing by ``/etc/kolla/kolla-build.conf`` in order to use the yourself bypasssing ``kolla-build.conf`` in order to work with binary build
feature for binary build type. type.
The template now becomes: The template becomes now:
.. code-block:: console .. code-block:: jinja
{% block neutron_server_footer %} {% block neutron_server_footer %}
ADD additions-archive / ADD additions-archive /
RUN cp /additions/jenkins/jenkins.json /jenkins.json RUN cp /additions/jenkins/jenkins.json /jenkins.json
{% endblock %} {% endblock %}
Custom Repos Custom repos
------------ ------------
Red Hat Red Hat
------- ^^^^^^^
The build method allows the operator to build containers from custom repos.
Kolla allows the operator to build containers using custom repos.
The repos are accepted as a list of comma separated values and can be in the The repos are accepted as a list of comma separated values and can be in the
form of ``.repo``, ``.rpm``, or a url. See examples below. form of ``.repo``, ``.rpm``, or a url. See examples below.
Update ``rpm_setup_config`` in ``/etc/kolla/kolla-build.conf``: To use current RDO packages (aka Delorean or DLRN), update ``rpm_setup_config``
in ``kolla-build.conf``:
.. path /etc/kolla/kolla-build.conf .. path /etc/kolla/kolla-build.conf
.. code-block:: ini .. code-block:: ini
rpm_setup_config = https://trunk.rdoproject.org/centos7/currrent/delorean.repo,https://trunk.rdoproject.org/centos7/delorean-deps.repo rpm_setup_config = https://trunk.rdoproject.org/centos8/current/delorean.repo,https://trunk.rdoproject.org/centos8/delorean-deps.repo
If specifying a ``.repo`` file, each ``.repo`` file will need to exist in the If specifying a ``.repo`` file, each ``.repo`` file will need to exist in the
same directory as the base Dockerfile (``kolla/docker/base``): same directory as the base Dockerfile (``kolla/docker/base``):
@ -499,7 +467,8 @@ same directory as the base Dockerfile (``kolla/docker/base``):
rpm_setup_config = epel.repo,delorean.repo,delorean-deps.repo rpm_setup_config = epel.repo,delorean.repo,delorean-deps.repo
Debian / Ubuntu Debian / Ubuntu
--------------- ^^^^^^^^^^^^^^^
For Debian based images, additional apt sources may be added to the build as For Debian based images, additional apt sources may be added to the build as
follows: follows:
@ -507,6 +476,42 @@ follows:
apt_sources_list = custom.list apt_sources_list = custom.list
Building behind a proxy
-----------------------
We can insert http_proxy settings into the images to
fetch packages during build, and then unset them at the end to avoid having
them carry through to the environment of the final images. Note, however, it's
not possible to drop the info completely using this method; it will still be
visible in the layers of the image.
To set the proxy settings, we can add this to the template's header block:
.. code-block:: docker
ENV http_proxy=https://evil.corp.proxy:80
ENV https_proxy=https://evil.corp.proxy:80
To unset the proxy settings, we can add this to the template's footer block:
.. code-block:: docker
ENV http_proxy=""
ENV https_proxy=""
Besides this configuration options, the script will automatically read these
environment variables. If the host system proxy parameters match the ones
going to be used, no other input parameters will be needed. These are the
variables that will be picked up from the user env:
.. code-block:: docker
HTTP_PROXY, http_proxy, HTTPS_PROXY, https_proxy, FTP_PROXY,
ftp_proxy, NO_PROXY, no_proxy
Also these variables could be overwritten using ``--build-args``, which have
precedence.
Known issues Known issues
============ ============
@ -516,49 +521,3 @@ Known issues
some containers fail to build. To rectify build problems, the build tool some containers fail to build. To rectify build problems, the build tool
will automatically attempt three retries of a build operation if the first will automatically attempt three retries of a build operation if the first
one fails. The retry count is modified with the ``--retries`` option. one fails. The retry count is modified with the ``--retries`` option.
Kolla-ansible with Local Registry
---------------------------------
To make kolla-ansible pull images from a local registry, set
``"docker_registry"`` to ``"172.22.2.81:4000"`` in
``"/etc/kolla/globals.yml"``. Make sure Docker is allowed to pull images from
insecure registry. See :kolla-ansible-doc:`Docker Insecure Registry
<user/multinode.html#deploy-a-registry>`.
Building behind a proxy
-----------------------
We can insert http_proxy settings into the images to
fetch packages during build, and then unset them at the end to avoid having
them carry through to the environment of the final images. Note however, it's
not possible to drop the info completely using this method; it will still be
visible in the layers of the image.
To set the proxy settings, we can add this to the template's header block:
.. code-block:: ini
ENV http_proxy=https://evil.corp.proxy:80
ENV https_proxy=https://evil.corp.proxy:80
To unset the proxy settings, we can add this to the template's footer block:
.. code-block:: ini
ENV http_proxy=""
ENV https_proxy=""
Besides this configuration options, the script will automatically read these
environment variables. If the host system proxy parameters match the ones
going to be used, no other input parameters will be needed. These are the
variables that will be picked up from the user env:
.. code-block:: ini
HTTP_PROXY, http_proxy, HTTPS_PROXY, https_proxy, FTP_PROXY,
ftp_proxy, NO_PROXY, no_proxy
Also these variables could be overwritten using ``--build-args``, which have
precedence.

View File

@ -1,4 +1,5 @@
Distro,Ceph source,Release Distro,Ceph,
,Source, Release
CentOS,CentOS Storage SIG,Nautilus CentOS,CentOS Storage SIG,Nautilus
Ubuntu,Ubuntu Cloud Archive,Octopus Ubuntu,Ubuntu Cloud Archive,Octopus
Debian,Debian,Nautilus Debian,Debian,Nautilus

1 Distro Ceph source Ceph Release
2 Source Release
3 CentOS CentOS Storage SIG CentOS Storage SIG Nautilus Nautilus
4 Ubuntu Ubuntu Cloud Archive Ubuntu Cloud Archive Octopus Octopus
5 Debian Debian Debian Nautilus Nautilus

View File

@ -83,7 +83,8 @@ openstackdocs_repo_name = 'openstack/kolla'
openstackdocs_pdf_link = True openstackdocs_pdf_link = True
openstackdocs_bug_project = 'kolla' openstackdocs_bug_project = 'kolla'
openstackdocs_bug_tag = '' openstackdocs_bug_tag = ''
openstack_projects = [ openstackdocs_auto_name = False
openstackdocs_projects = [
'kolla-ansible', 'kolla-ansible',
'oslotest', 'oslotest',
] ]

View File

@ -0,0 +1,18 @@
===========================
Generating kolla-build.conf
===========================
Install tox and generate the build configuration. The build configuration is
designed to hold advanced customizations when building images.
If you have already cloned the Kolla Git repository to the ``kolla`` folder,
generate the ``kolla-build.conf`` file using the following steps.
.. code-block:: console
python3 -m pip install tox
cd kolla/
tox -e genconfig
The location of the generated configuration file is
``etc/kolla/kolla-build.conf``.

View File

@ -13,7 +13,9 @@ We welcome everyone to join our project!
:maxdepth: 2 :maxdepth: 2
contributing contributing
running-in-development
adding-a-new-image adding-a-new-image
genconfig
release-notes release-notes
running-tests running-tests
code-reviews code-reviews

View File

@ -0,0 +1,29 @@
.. _running-in-development:
==================================
Running Kolla Build in development
==================================
The recommended way to run in development
-----------------------------------------
The preferred way to run kolla-build for development is using ``tox``.
Run the following from inside the repository:
.. code-block:: console
tox -e venv -- kolla-build ...
The alternative way to run in development
-----------------------------------------
Sometimes, developers prefer to manage their venvs themselves. This is also
possible. Remember to install in editable mode (``-e``). Run the following from
inside the repository:
.. code-block:: console
python3 -m venv ~/path/to/venv
source ~/path/to/venv/bin/activate
python3 -m pip install -e .
kolla-build ...

View File

@ -55,14 +55,6 @@ Administrator Guide
admin/index admin/index
Contributor Guide
=================
.. toctree::
:maxdepth: 2
contributor/index
Support Matrix Support Matrix
============== ==============
@ -70,3 +62,11 @@ Support Matrix
:maxdepth: 2 :maxdepth: 2
support_matrix support_matrix
Contributor Guide
=================
.. toctree::
:maxdepth: 2
contributor/index

View File

@ -14,11 +14,6 @@ Supported base images
The following base container images are supported: The following base container images are supported:
.. note::
CentOS 7 is no longer supported as a base container image. The Train release
supports both CentOS 7 and 8 images, and provides a route for migration.
============= ============ ================ ============= ============ ================
Distribution Default base Default base tag Distribution Default base Default base tag
============= ============ ================ ============= ============ ================
@ -31,6 +26,14 @@ Ubuntu Focal ubuntu 20.04
The remainder of this document outlines which images are supported on which of The remainder of this document outlines which images are supported on which of
these distribution. these distribution.
Ceph versions in Kolla images
=============================
.. csv-table:: Ceph versions
:header-rows: 2
:stub-columns: 1
:file: ./ceph_versions.csv
Support clause definitions Support clause definitions
========================== ==========================
@ -42,13 +45,6 @@ Coverage:
* CI in ``kolla-ansible`` is testing that images are functional * CI in ``kolla-ansible`` is testing that images are functional
* kolla core team is maintaining versions * kolla core team is maintaining versions
M - Maintained
--------------
Coverage:
* kolla core team is maintaining versions
C - Community maintained C - Community maintained
------------------------ ------------------------
@ -90,10 +86,3 @@ Currently unbuildable images
For a list of currently unbuildable images please look into For a list of currently unbuildable images please look into
``kolla/image/build.py`` file - ``UNBUILDABLE_IMAGES`` dictionary. ``kolla/image/build.py`` file - ``UNBUILDABLE_IMAGES`` dictionary.
Ceph versions in Kolla images
=============================
.. csv-table:: Ceph versions
:file: ./ceph_versions.csv