implement panko api for ubuntu binary
Change-Id: I34ea4097be491c70e5fa183ee7d505885d7d7c3c
This commit is contained in:
parent
14885f1f2b
commit
68826b64e2
@ -13,9 +13,10 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
|
||||
] %}
|
||||
|
||||
{% elif base_distro in ['debian', 'ubuntu'] %}
|
||||
|
||||
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
||||
&& /bin/false
|
||||
{% set panko_api_packages = [
|
||||
'panko-api',
|
||||
'python-pymongo'
|
||||
] %}
|
||||
|
||||
{% endif %}
|
||||
{{ macros.install_packages(panko_api_packages | customizable("packages")) }}
|
||||
|
@ -22,10 +22,12 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
|
||||
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
|
||||
&& sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf
|
||||
{% elif base_distro in ['debian', 'ubuntu'] %}
|
||||
|
||||
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
||||
&& /bin/false
|
||||
|
||||
{% set panko_base_packages = [
|
||||
'apache2',
|
||||
'libapache2-mod-wsgi'
|
||||
] %}
|
||||
{{ macros.install_packages(panko_base_packages | customizable("packages")) }}
|
||||
RUN echo > /etc/apache2/ports.conf
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
||||
|
@ -128,7 +128,6 @@ class BuildTestUbuntuBinary(BuildTest, base.BaseTestCase):
|
||||
"monasca-base",
|
||||
"novajoin-base",
|
||||
"octavia-base",
|
||||
"panko-base",
|
||||
"searchlight-base",
|
||||
"senlin-base",
|
||||
"solum-base",
|
||||
@ -173,7 +172,6 @@ class BuildTestDebianBinary(BuildTest, base.BaseTestCase):
|
||||
"monasca-base",
|
||||
"novajoin-base",
|
||||
"octavia-base",
|
||||
"panko-base",
|
||||
"searchlight-base",
|
||||
"senlin-base",
|
||||
"sensu-base",
|
||||
|
Loading…
Reference in New Issue
Block a user