2187125b13
This patchset contains customization of Dockerfile of kibana container Change-Id: I0081cbcfeea7d0cd270116b61f009ea1a797c330 Partially-implements: blueprint third-party-plugin-support
17 lines
433 B
Django/Jinja
17 lines
433 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
RUN useradd -r -m --user-group kibana \
|
|
&& usermod -a -G kolla kibana
|
|
|
|
{% set kibana_packages = ['kibana'] %}
|
|
RUN {{ macros.install_packages(kibana_packages | customizable("packages")) }}
|
|
|
|
{% block kibana_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER kibana
|