grafana: drop check for not supported architectures

Kolla supports only AArch64 and x86-64 so there is no need to check for
other architectures.

Change-Id: I44e45492bcbdd56a5c985ba84bad66202c9fde55
This commit is contained in:
Marcin Juszkiewicz 2022-04-21 18:08:36 +02:00 committed by Radosław Piliszek
parent 08b80e34da
commit 86361d0831

View File

@ -11,13 +11,6 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% 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
{% endif %}
{{ macros.configure_user(name='grafana', homedir='/usr/share/grafana') }}
{{ macros.install_packages(grafana_packages | customizable("packages")) }}