码迷,mamicode.com
首页 > 其他好文 > 详细

OpenStack-Heat中template的formatversion介绍

时间:2014-05-21 16:45:14      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:openstack   heat   aws   template   formatversion   

template中有三个formatversion,第一种是aws的格式,表示这是一个json文件;第二种是heat为了扩展aws并且更好的加入注释,引入的yaml格式文件;第三种是openstack的heat特有的hot格式的头部,也是基于yaml格式的。
  • "AWSTemplateFormatVersion": "2010-09-09", 
  • HeatTemplateFormatVersion: ‘2012-12-12‘
  • heat_template_version: 2013-05-23

  • 不同版本所支持函数的区别
AWSTemplateFormatVersion‘ 支持的函数
  •             ‘Fn::FindInMap‘: FindInMap,
  •             ‘Fn::GetAZs‘: GetAZs,
  •             ‘Ref‘: Ref,
  •             ‘Fn::GetAtt‘: GetAtt,
  •             ‘Fn::Select‘: Select,
  •             ‘Fn::Join‘: Join,
  •             ‘Fn::Base64‘: Base64,
HeatTemplateFormatVersion‘ 支持的函数
  •             ‘Fn::FindInMap‘: FindInMap,
  •             ‘Fn::GetAZs‘: GetAZs,
  •             ‘Ref‘: Ref,
  •             ‘Fn::GetAtt‘: GetAtt,
  •             ‘Fn::Select‘: Select,
  •             ‘Fn::Join‘: Join,
  •             ‘Fn::Split‘: Split,
  •             ‘Fn::Replace‘: Replace,
  •             ‘Fn::Base64‘: Base64,
  •             ‘Fn::MemberListToMap‘: MemberListToMap,
  •             ‘Fn::ResourceFacade‘: ResourceFacade,
heat_template_version‘ 支持的函数
  •             ‘Fn::GetAZs‘: cfn_funcs.GetAZs,
  •             ‘get_param‘: GetParam,
  •             ‘get_resource‘: cfn_funcs.ResourceRef,
  •             ‘Ref‘: cfn_funcs.Ref,
  •             ‘get_attr‘: GetAtt,
  •             ‘Fn::Select‘: cfn_funcs.Select,
  •             ‘Fn::Join‘: cfn_funcs.Join,
  •             ‘Fn::Split‘: cfn_funcs.Split,
  •             ‘str_replace‘: Replace,
  •             ‘Fn::Replace‘: cfn_funcs.Replace,
  •             ‘Fn::Base64‘: cfn_funcs.Base64,
  •             ‘Fn::MemberListToMap‘: cfn_funcs.MemberListToMap,
  •             ‘resource_facade‘: ResourceFacade,
  •             ‘Fn::ResourceFacade‘: cfn_funcs.ResourceFacade,
  •             ‘get_file‘: GetFile,

不同的部分用红色标注出来了。

  • 不同头部section的区别:
AWSTemplateFormatVersionHeatTemplateFormatVersion支持的字段
  • ‘AWSTemplateFormatVersion‘,
  • ‘HeatTemplateFormatVersion‘,
  • ‘Description‘, 
  • ‘Mappings‘, 
  • ‘Parameters‘,
  • ‘Resources‘, 
  • ‘Outputs‘
heat_template_version支持的字段:
  • ‘heat_template_version‘, 
  • ‘description‘, 
  • ‘parameter_groups‘,
  • ‘parameters‘, 
  • ‘resources‘,
  • ‘outputs‘,

OpenStack-Heat中template的formatversion介绍,布布扣,bubuko.com

OpenStack-Heat中template的formatversion介绍

标签:openstack   heat   aws   template   formatversion   

原文地址:http://blog.csdn.net/xuanlangjian/article/details/26353191

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!