docs: we moved UNBUILDABLE_IMAGES to separate file

Change-Id: I07ca5b82ecceda500e00260262c2a711c97b33bd
This commit is contained in:
Marcin Juszkiewicz 2023-04-21 10:56:37 +02:00 committed by Dr. Jens Harbott
parent 2b0a5f684b
commit d2c6a4e0ee
1 changed files with 7 additions and 5 deletions

View File

@ -63,22 +63,24 @@ doable so we have list of `unbuildable images` for that.
Unbuildable images
~~~~~~~~~~~~~~~~~~
In ``kolla/image/build.py`` source file we keep a list of images which cannot
be built for some distribution/architecture/build-type combinations.
In ``kolla/image/unbuildable.py`` source file we keep a list of images which
cannot be built for some distribution/architecture/build-type combinations.
.. code-block:: python
# Note: These are just examples, find the current list at
# https://opendev.org/openstack/kolla/src/branch/master/kolla/image/unbuildable.py
UNBUILDABLE_IMAGES = {
'aarch64': {
"bifrost-base", # someone need to get upstream working first
"bifrost-base", # someone need to get upstream working first
},
'centos': {
"hacluster-pcs", # Missing crmsh package
"hacluster-pcs", # Missing crmsh package
},
'ubuntu+aarch64': {
"kibana", # no binary package
"kibana", # no binary package
},
}