Merge "Updated Gnocchi binary containers"
This commit is contained in:
commit
4204f29e64
@ -10,6 +10,12 @@ RUN yum -y install \
|
||||
openstack-gnocchi-indexer-sqlalchemy \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get -y install --no-install-recommends \
|
||||
gnocchi-api \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
|
@ -8,11 +8,18 @@ RUN yum -y install \
|
||||
openstack-gnocchi-common \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get -y install --no-install-recommends \
|
||||
gnocchi-common \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% elif install_type == 'source' %}
|
||||
{% if base_distro in ['ubuntu', 'debian'] %}
|
||||
|
||||
RUN apt-get -y install --no-install-recommends libpq-dev \
|
||||
RUN apt-get -y install --no-install-recommends \
|
||||
libpq-dev \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
|
22
docker/gnocchi/gnocchi-metricd/Dockerfile.j2
Normal file
22
docker/gnocchi/gnocchi-metricd/Dockerfile.j2
Normal file
@ -0,0 +1,22 @@
|
||||
FROM {{ namespace }}/{{ image_prefix }}gnocchi-base:{{ tag }}
|
||||
MAINTAINER {{ maintainer }}
|
||||
|
||||
{% if install_type == 'binary' %}
|
||||
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
||||
|
||||
RUN yum -y install \
|
||||
openstack-gnocchi-metricd \
|
||||
&& yum clean all
|
||||
|
||||
{% elif base_distro in ['ubuntu'] %}
|
||||
|
||||
RUN apt-get -y install --no-install-recommends \
|
||||
gnocchi-metricd \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{{ include_footer }}
|
||||
|
||||
USER gnocchi
|
Loading…
Reference in New Issue
Block a user