ae1322ec10
This change updates the docker files to use base_package_type instead of doing specific distro checks for the rhel/deb generic cases. The base_distro is still available and is used when a specific distro needs a customization but if the differences are purely rpm vs deb, then the base_package_type can be used. Change-Id: I8d720bb185df65a0178061ccf20b1ab2265da2c5
53 lines
1.5 KiB
Django/Jinja
53 lines
1.5 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block grafana_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% set grafana_packages = ['grafana'] %}
|
|
|
|
{% if base_arch not in ['aarch64', 'x86_64'] %}
|
|
|
|
RUN echo 'There are no Grafana external repositories for {{ base_arch }}' \
|
|
&& /bin/false
|
|
|
|
{% elif base_arch in ['aarch64'] %}
|
|
|
|
{% if base_distro in ['centos'] %}
|
|
|
|
{% set grafana_packages = [
|
|
'https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.2.4-1.aarch64.rpm'
|
|
] %}
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
|
|
{% set grafana_packages = [
|
|
'libfontconfig',
|
|
'https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana_5.2.4_arm64.deb'
|
|
] %}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.configure_user(name='grafana', homedir='/usr/share/grafana') }}
|
|
|
|
{{ macros.install_packages(grafana_packages | customizable("packages")) }}
|
|
|
|
WORKDIR /usr/share/grafana
|
|
|
|
COPY grafana_sudoers /etc/sudoers.d/kolla_grafana_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN grafana-cli plugins install gnocchixyz-gnocchi-datasource \
|
|
&& grafana-cli plugins install grafana-influxdb-08-datasource \
|
|
&& chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/kolla_grafana_sudoers \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block grafana_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER grafana
|