55b184a865
1. Add the missing packages in the gnocchi image packages: lz4 sqlalchemy_utils gnocchiclient 2. gnocchi config path is error gnocchi config path is /gnocchi/etc/gnocchi 3. gnocchi sync db command is error sync db command is: gnocchi-upgrade Reference link: http://docs.openstack.org/developer/gnocchi/install.html 4. gnocchi log directory is /var/log/kolla/gnocchi 5. Add gnocchi-api running as a mod_wsgi Reference link: http://docs.openstack.org/developer/gnocchi/running.html 6. Add gnocchi sudoers file Closes-Bug: #1607332 Change-Id: Id3aded82706ffd204373c97a020980d0d9b72663
24 lines
853 B
Django/Jinja
24 lines
853 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}gnocchi-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set gnocchi_api_packages = [
|
|
'openstack-gnocchi-api',
|
|
'openstack-gnocchi-carbonara',
|
|
'openstack-gnocchi-indexer-sqlalchemy'
|
|
] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set gnocchi_api_packages = ['gnocchi-api'] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(gnocchi_api_packages | customizable("packages")) }}
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_gnocchi_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_gnocchi_extend_start
|
|
|
|
{% block gnocchi_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|