Add `crudini` to ovs-dpdk containers

kolla-ansible runs ovs-dpdkctl.sh inside container, and ovs-dpdkctl.sh
requires crudini.

Change-Id: Iad84dd12432befe9250c50d4094b1e5e2e0cf8ee
This commit is contained in:
Alexander Evseev 2021-02-16 15:32:01 +03:00 committed by Alexander Evseev
parent 552bd7c1ef
commit 6585332a63
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@ RUN echo 'image not yet available for {{ base_distro }}' \
{% elif base_package_type == 'deb' %}
{% set ovs_dpdk_packages = [
'openvswitch-switch-dpdk'
'openvswitch-switch-dpdk',
'crudini'
] %}
{{ macros.install_packages(ovs_dpdk_packages | customizable("packages")) }}