Openstack neutron-linuxbridge-agent 每次重新启动它时都会不断下降并创建 vxlans

问题描述 投票:0回答:0

我有一个 openstack 基础设施,它由一个控制器、4 个计算、1 个块存储和 1 个对象存储组成。 一切都很顺利,直到昨天我们创建了一个实例并在其上安装了 ansible,目的是运行一个创建 3 个实例(1 个主实例和 2 个工作实例)并在其上提供 k8s 集群的剧本。 现在,我们运行

openstack network agent list
计算上的每个 linuxbridge 代理都已关闭,我们无法通过 ssh 连接到我们的实例。 这是我在
/var/log/neutron/neutron-linuxbridge-agent.log

中发现的唯一错误
CRITICAL neutron [-] Unhandled error: neutron.privileged.agent.linux.ip_lib.InterfaceOperationNotSupported: Operation not supported on interface vxlan-124, namespace None.
2023-02-28 20:41:36.473 15785 ERROR neutron Traceback (most recent call last):
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/bin/neutron-linuxbridge-agent", line 10, in <module>
2023-02-28 20:41:36.473 15785 ERROR neutron     sys.exit(main())
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/neutron/cmd/eventlet/plugins/linuxbridge_neutron_agent.py", line 28, in main
2023-02-28 20:41:36.473 15785 ERROR neutron     agent_main.main()
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py", line 1039, in main
2023-02-28 20:41:36.473 15785 ERROR neutron     manager = LinuxBridgeManager(bridge_mappings, interface_mappings)
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py", line 92, in __init__
2023-02-28 20:41:36.473 15785 ERROR neutron     self.check_vxlan_support()
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py", line 729, in check_vxlan_support
2023-02-28 20:41:36.473 15785 ERROR neutron     if self.vxlan_ucast_supported():
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py", line 705, in vxlan_ucast_supported
2023-02-28 20:41:36.473 15785 ERROR neutron     self.delete_interface(test_iface)
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py", line 670, in delete_interface
2023-02-28 20:41:36.473 15785 ERROR neutron     device.link.delete()
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/neutron/agent/linux/ip_lib.py", line 482, in delete
2023-02-28 20:41:36.473 15785 ERROR neutron     privileged.delete_interface(self.name, self._parent.namespace)
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/oslo_privsep/priv_context.py", line 271, in _wrap
2023-02-28 20:41:36.473 15785 ERROR neutron     return self.channel.remote_call(name, args, kwargs,
2023-02-28 20:41:36.473 15785 ERROR neutron   File "/usr/lib/python3/dist-packages/oslo_privsep/daemon.py", line 215, in remote_call
2023-02-28 20:41:36.473 15785 ERROR neutron     raise exc_type(*result[2])
2023-02-28 20:41:36.473 15785 ERROR neutron neutron.privileged.agent.linux.ip_lib.InterfaceOperationNotSupported: Operation not supported on interface vxlan-124, namespace None.

我尝试重新启动节点,返回 1 个快照,因为我们在 VMware 上工作,但它再次发生

kubernetes ansible openstack
© www.soinside.com 2019 - 2024. All rights reserved.