其他分享
首页 > 其他分享> > Heat编排服务

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,编排,Heat,m1,服务,type
来源: https://blog.csdn.net/user_from_future/article/details/120600530