1

これが機能する私のテンプレートです。そのテンプレートで「heat stack-create」コマンドを実行すると、IP を持つスタックとインスタンスが作成されます。インスタンスを管理するためのインターフェースにアクセスできます。そのインターフェイスから、フローティング IP を作成し、それを新しく作成したインスタンスに割り当てることができます。

heat_template_version: 2013-05-23

description: >
    Docker generic server

parameters:
    image_id: {default: centos-7, description: image, type: string}
    instance_type: {default: ug1.medium, description: instance, type: string}
    key_name: {default: user, description: Name of an existing key pair to use for the instance, type: string}

resources:
    nginx_securitygroup:
      properties:
        GroupDescription: Generic security group for nginx stack
        SecurityGroupIngress:
          - {CidrIp: 10.0.0.0/8, FromPort: '80', IpProtocol: TCP, ToPort: '80'}
  type: AWS::EC2::SecurityGroup


server_securitygroup:
    type: AWS::EC2::SecurityGroup
    properties:
        GroupDescription: Generic security group from docker nginx
        SecurityGroupIngress:
            # This is needed to allow pinging the server
            - {"CidrIp": "10.0.0.0/8", "FromPort": "-1", "ToPort": "-1", "IpProtocol": "ICMP"}

            # Ssh port
            - {"CidrIp": "10.0.0.0/8", "FromPort": "22", "ToPort": "22", "IpProtocol": "TCP"}

            # Open docker ports
            - {"CidrIp": "10.0.0.0/8", "FromPort": "2375", "ToPort": "2375", "IpProtocol": "TCP"}
            - {"CidrIp": "10.0.0.0/8", "FromPort": "2376", "ToPort": "2376", "IpProtocol": "TCP"}

docker_server:
    type: AWS::EC2::Instance
    properties:

        ImageId: { get_param: image_id }
        InstanceType: { get_param: instance_type }
        KeyName: { get_param: key_name }
        SecurityGroups:
            - Ref: server_securitygroup
            - {Ref: nginx_securitygroup}


        UserData: |
            #!/bin/bash -v

            #Do some operations to start the docker container on the instance                

outputs:
    ipaddress_private:
        description: Private ip
        value:
            "Fn::GetAtt":
                - docker_server
                - PrivateIp

私の問題は、作成したフローティング IP をインスタンスに手動で割り当てたくないということです。スタックとインスタンスが作成されたときに自動的に割り当てられるようにしたいのです。たとえば、次のドキュメントを試してみました: http://blog.oddbit.com/2013/12/06/an-introduction-to-openstack-heat/

しかし、うまくいきません。フローティング IP を別の既存のリソース (サーバー) に割り当てようとしていることが原因である可能性があります。協会を機能させるにはどうすればよいですか?

4

2 に答える 2