我正试图安装kypo
的网络范围,遵循其官方指南在openstack
部署的全合一模式。在创建Base ./create-base.sh
时,我的错误超过了最大重试。它成功地构建了安全security groups
和networking
栈。然而,head和proxy正在产生错误。
2022-03-30 07:53:00Z [kypo-head-stack]: CREATE_IN_PROGRESS Stack CREATE started
2022-03-30 07:53:01Z [kypo-head-stack.kypo-head-port]: CREATE_IN_PROGRESS state changed
2022-03-30 07:53:05Z [kypo-head-stack.kypo-head-port]: CREATE_COMPLETE state changed
2022-03-30 07:53:08Z [kypo-head-stack.kypo-head]: CREATE_IN_PROGRESS state changed
2022-03-30 07:53:08Z [kypo-head-stack.kypo-head-floating-ip]: CREATE_IN_PROGRESS state changed
2022-03-30 07:53:25Z [kypo-head-stack.kypo-head-floating-ip]: CREATE_COMPLETE state changed
2022-03-30 07:54:41Z [kypo-head-stack.kypo-head]: CREATE_FAILED ResourceInError: resources.kypo-head: Went to status ERROR due to "Message: Exceeded maximum number of retries. Exhausted all hosts available for retrying build failures for instance 20fdda13-f5fa-4378-bf60-c64f0bf52371., Code: 500"
2022-03-30 07:54:41Z [kypo-head-stack.kypo-head]: DELETE_IN_PROGRESS state changed
2022-03-30 07:54:46Z [kypo-head-stack.kypo-head]: DELETE_COMPLETE state changed
2022-03-30 07:54:50Z [kypo-head-stack.kypo-head]: CREATE_IN_PROGRESS state changed
2022-03-30 07:55:28Z [kypo-head-stack.kypo-head]: CREATE_FAILED ResourceInError: resources.kypo-head: Went to status ERROR due to "Message: Exceeded maximum number of retries. Exhausted all hosts available for retrying build failures for instance 130604ae-a7d6-42f4-9010-56524561b4a0., Code: 500"
2022-03-30 07:55:28Z [kypo-head-stack.kypo-head]: DELETE_IN_PROGRESS state changed
2022-03-30 07:55:35Z [kypo-head-stack.kypo-head]: DELETE_COMPLETE state changed
2022-03-30 07:55:40Z [kypo-head-stack.kypo-head]: CREATE_IN_PROGRESS state changed
2022-03-30 07:56:21Z [kypo-head-stack.kypo-head]: CREATE_FAILED ResourceInError: resources.kypo-head: Went to status ERROR due to "Message: Exceeded maximum number of retries. Exhausted all hosts available for retrying build failures for instance ad4be42c-fecb-43bc-881b-b8d6f0e17527., Code: 500"
Stack kypo-head-stack CREATE_FAILED
2022-03-30 07:59:53Z [kypo-proxy-jump-stack]: CREATE_IN_PROGRESS Stack CREATE started
2022-03-30 07:59:54Z [kypo-proxy-jump-stack.kypo-proxy-jump-port]: CREATE_IN_PROGRESS state changed
2022-03-30 08:00:03Z [kypo-proxy-jump-stack.kypo-proxy-jump-port]: CREATE_COMPLETE state changed
2022-03-30 08:00:03Z [kypo-proxy-jump-stack.kypo-proxy-jump-floating-ip]: CREATE_IN_PROGRESS state changed
2022-03-30 08:00:05Z [kypo-proxy-jump-stack.kypo-proxy-jump]: CREATE_IN_PROGRESS state changed
2022-03-30 08:00:15Z [kypo-proxy-jump-stack.kypo-proxy-jump-floating-ip]: CREATE_COMPLETE state changed
2022-03-30 08:00:48Z [kypo-proxy-jump-stack.kypo-proxy-jump]: CREATE_FAILED ResourceInError: resources.kypo-proxy-jump: Went to status ERROR due to "Message: Exceeded maximum number of retries. Exhausted all hosts available for retrying build failures for instance 8d300d3f-1fdd-430e-b271-57eb5b1cbb8a., Code: 500"
...
Stack kypo-proxy-jump-stack CREATE_FAILED
发布于 2022-04-08 04:41:05
对nova-compute.log的进一步日志探索表明,libvirt.libvirtError: unsupported configuration: Emulator '/usr/bin/qemu-system-x86_64' does not support virt type 'kvm'
。我将virt_type更改为qemu,但有些错误是如何持久化的。问题的根本原因是我在VMWare上运行VM,而没有启用启用嵌套虚拟化的Virtulize Intel VT-x/EPT
。
我在VM > Processor下选中这个框,错误就消失了。
https://stackoverflow.com/questions/71673864
复制相似问题