Heat编排服务
作者:互联网
Heat
用heat编排yaml创建一个名为Fmin,ID为1,内存为1024MB,磁盘为10GB,vcpu数量为1的云主机类型
heat_template_version: 2013-05-23
description: Test Template
resources:
m1:
type: OS::Nova::Flavor
properties:
name: "m1.flavor"
flavorid: "1234"
ram: 2048
disk: 20
vcpus: 2
outputs:
flavor_id:
description: Flavor ID
value: { get_attr: [ m1, show ] }
模板解释
- heat_template_version 在网页路径“项目-编排-模板版本”中选一个日期作为值
- resources-type 在网页路径“项目-编排-资源类型”中选择和题意相符的类型
- resources-具体参数 在在网页路径“项目-编排-资源类型”中点进具体的type中的下面一块属性中有参数以及类型
- outputs-value 在在网页路径“项目-编排-资源类型”中点进具体的type中的上面一块属性中有参数以及类型,为选填类型
标签:资源类型,网页,heat,编排,Heat,m1,服务,type 来源: https://blog.csdn.net/user_from_future/article/details/120600530