Add Neutron SR-IOV agent image
Adds an image for the neutron SR-IOV agent. Change-Id: I31cad133deaac5a155b3a9a5f3ea03d6e6b65186
This commit is contained in:
parent
0bd1e3a84d
commit
a1511d7282
29
docker/neutron/neutron-sriov-agent/Dockerfile.j2
Normal file
29
docker/neutron/neutron-sriov-agent/Dockerfile.j2
Normal file
@ -0,0 +1,29 @@
|
||||
FROM {{ namespace }}/{{ image_prefix }}neutron-base:{{ tag }}
|
||||
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
||||
|
||||
{% block neutron_sriov_agent_header %}{% endblock %}
|
||||
|
||||
{% import "macros.j2" as macros with context %}
|
||||
|
||||
{% if install_type == 'binary' %}
|
||||
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
||||
|
||||
{% set neutron_sriov_agent_packages = [
|
||||
'openstack-neutron-sriov-nic-agent'
|
||||
] %}
|
||||
|
||||
{% elif base_distro in ['debian', 'ubuntu'] %}
|
||||
|
||||
{% set neutron_sriov_agent_packages = [
|
||||
'neutron-sriov-agent'
|
||||
] %}
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{{ macros.install_packages(neutron_sriov_agent_packages | customizable("packages")) }}
|
||||
|
||||
{% block neutron_sriov_agent_footer %}{% endblock %}
|
||||
{% block footer %}{% endblock %}
|
||||
|
||||
USER neutron
|
@ -0,0 +1,3 @@
|
||||
---
|
||||
features:
|
||||
- Add neutron-sriov-agent image.
|
Loading…
Reference in New Issue
Block a user