我正在使用Juno版本的Openstack Heat,我遇到了一个问题。
我想使用 AutoScalingGroup,它将在特定子网中自动创建一些实例。我的网络拓扑是一个具有多个子网的网络(每个层都位于其自己的子网上(。
但这似乎在Juno版本中是不可能的,因为我们无法指定OS::Nova::服务器/网络中的子网参数。文档在这里:http://docs.openstack.org/developer/heat/template_guide/openstack.html#OS::Nova::Server-prop-networks-*-subnet
我想知道是否有人对 Juno 中的此限制有解决方法。
创建独立服务器时,可以指定带有子网引用的 OS::Neutron::P ort。但是我找不到如何使用自动缩放来做到这一点。
提前非常感谢,
J.M.
编辑:当前堆栈。它仅适用于一台服务器,因为端口是在操作系统之外创建的:Heat::AutoScalingGroup
resources:
instance_port:
type: OS::Neutron::Port
properties:
name: { get_param : portName }
network_id: { get_param: networkId }
fixed_ips:
- subnet_id: { get_param: subnetId }
security_groups: { get_param: securityGroups }
asg_group:
depends_on: [ instance_port ]
type: OS::Heat::AutoScalingGroup
properties:
...
resource:
type: OS::Nova::Server
properties:
name: { get_param: asgName }
....
networks:
# TODO assign direct IP to the right subnet by decommenting this line. Will be available in Liberty
#- subnet: { get_param: subnetId } /! doesn't work in Juno
- port: { get_resource : instance-port } /! Works only with one server
解决方案是使用嵌套堆栈,其功能描述如下: http://docs.openstack.org/developer/heat/template_guide/composition.html#define-a-new-resource-type
您有一个包含端口和服务器的嵌套堆栈,并将此堆栈引用到主堆栈中。例:主堆栈
resources:
asg_group:
type: OS::Heat::AutoScalingGroup
properties:
min_size: { get_param: min }
desired_capacity: { get_param: desired }
max_size: { get_param: max }
rolling_updates: {"max_batch_size": 1, "min_in_service": 2, "pause_time": 60}
resource:
type: "lib::AsgInstance"
properties:
appli: { get_param: appli }
嵌套堆栈:
resources:
instance-port:
type: OS::Neutron::Port
properties:
name: { get_param : portName }
network_id: { get_param: networkId }
fixed_ips:
- subnet_id: { get_param: subnetId }
security_groups: { get_param: securityGroups }
instance:
type: OS::Nova::Server
properties:
name: { get_param: instanceName }
key_name: { get_param: keyName }
image: { get_param: imageName }
flavor: { get_param: flavorName }
networks:
# TODO assign direct IP to the right subnet by decommenting this line. Will be available in Liberty
#- subnet: { get_param: subnetId }
- port: { get_resource : instance-port }
和环境文件:
resource_registry:
"lib::AsgInstance": lib/nestedstack.yaml