首页 > 其他 > 详细

kolla制作过程中:neutron-sfc-agent 报错的问题

时间:2018-09-05 15:57:44      阅读:188      评论:0      收藏:0      [点我收藏+]

在使用二进制方式编译镜像的时候,neutron的sfc-agent提示如下错误
ERROR:kolla.image.build:neutron-sfc-agent Failed with status: error
查找编译过程中的日志记录信息,有如下提示信息
ERROR:kolla.image.build.neutron-sfc-agent:Error‘d with the following message
ERROR:kolla.image.build.neutron-sfc-agent:The command ‘/bin/sh -c echo ‘binary not yet available for centos‘ && /bin/false‘ returned a non-zero code: 1
根据kolla\docker\neutron\neutron-sfc-agent\Dockerfile.j2的描述,发现是目前,sfc-agent还不支持二进制方式,只是支持源码编译模式

{% if install_type == ‘binary‘ %}
RUN echo ‘{{ install_type }} not yet available for {{ base_distro }}‘ \
&& /bin/false
{% elif install_type == ‘source‘ %}
ADD neutron-sfc-agent-archive /neutron-sfc-agent-source
RUN ln -s neutron-sfc-agent-source/* neutron-sfc-agent \
&& /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt /neutron-sfc-agent
{% endif %}

kolla制作过程中:neutron-sfc-agent 报错的问题

原文:https://www.cnblogs.com/potato-chip/p/9592180.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!