使用Openstack的HEAT模板创建的集群资源自定义名称



我正在尝试使用Openstack的热模板创建集群。我有以下模板定义我的资源组:

cluster:
    type: OS::Heat::ResourceGroup
    properties:
        count: { get_param: instance_count }
        resource_def:
            type: ../templates/vm.yaml
            properties:
                image: { get_param: image }
                flavor: { get_param: flavor }
                private_network : { get_attr : [network, name] }

这可以工作,但是所有这些服务器的名称非常神秘。我想知道是否可以为每个实例提供一个前缀来命名。

或者另一种方法是,我可以str_replace一个模板值与集群计数的当前索引。

有办法做到这一点吗?

没关系,从ResourceGroup文档中获得的。使用%index%

下面是文档中的示例。

resources:
  my_indexed_group:
    type: OS::Heat::ResourceGroup
    properties:
      count: 3
      resource_def:
        type: OS::Nova::Server
        properties:
          # create a unique name for each server
          # using its index in the group
          name: my_server_%index%
          image: CentOS 6.5
          flavor: 4GB Performance

相关内容

  • 没有找到相关文章

最新更新