90adc2b851
Defaults to 'image_prefix' for now but shows which images gets their names changed soon. Change-Id: I0608e8f62f28d6667b4c8753c47553e4cbf75503
28 lines
711 B
Django/Jinja
28 lines
711 B
Django/Jinja
FROM {{ namespace }}/{{ infra_image_prefix }}skydive-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block skydive_agent_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% block skydive_agent_install %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
{% set skydive_agent_packages = ['openvswitch'] %}
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
|
|
{% set skydive_agent_packages = ['openvswitch-common'] %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(skydive_agent_packages | customizable("packages")) }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block skydive_agent_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|