Merge "Allow build debian/ubuntu-binary cloudkitty images"

This commit is contained in:
Zuul 2021-08-23 14:22:14 +00:00 committed by Gerrit Code Review
commit f16d839daf
5 changed files with 13 additions and 8 deletions

View File

@ -17,8 +17,9 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% elif base_package_type == 'deb' %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% set cloudkitty_api_packages = [
'cloudkitty-api'
] %}
{% endif %}
{% elif install_type == 'source' %}

View File

@ -18,8 +18,9 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% elif base_package_type == 'deb' %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% set cloudkitty_base_packages = [
'cloudkitty-common',
] %}
{% endif %}

View File

@ -16,8 +16,9 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% elif base_package_type == 'deb' %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% set cloudkitty_processor_packages = [
'cloudkitty-processor',
] %}
{% endif %}

View File

@ -137,13 +137,11 @@ UNBUILDABLE_IMAGES = {
},
'debian+binary': {
"cloudkitty-base", # no support in Dockerfile
"nova-serialproxy", # no binary package
"tacker-base", # no binary package
},
'ubuntu+binary': {
"cloudkitty-base",
"senlin-conductor", # no binary package
"senlin-health-manager", # no binary package
"tacker-base",

View File

@ -0,0 +1,4 @@
---
features:
- |
Support for Debian/Ubuntu binary (aka packaged) CloudKitty images.