1.使用模板创建虚拟机
heat_template_version: 2018-09-04
description: Simple template to deploy a virtual machine.
resources:
my_hello_vm: #资源名
type: OS::Nova::Server # nova方法
properties:
image: cirros #镜像名
flavor: m1.small #flavor名
networks:
- network: testnet #网络名

检查创建的stack失败


检查engine日志:

原文:https://www.cnblogs.com/CaesarLinsa/p/9589362.html