You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brooklyn.apache.org by drigodwin <gi...@git.apache.org> on 2017/11/17 11:15:58 UTC

[GitHub] brooklyn-docs pull request #238: Specify EBS boot volume size

GitHub user drigodwin opened a pull request:

    https://github.com/apache/brooklyn-docs/pull/238

    Specify EBS boot volume size

    Document how to specify the EBS boot volume size on AWS

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/drigodwin/brooklyn-docs ebs-boot-volume

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/brooklyn-docs/pull/238.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #238
    
----
commit 4f10a1c4883f66da1af33463cc7d5cf25ee72859
Author: Duncan Godwin <du...@cloudsoftcorp.com>
Date:   2017-11-17T11:13:49Z

    Specify EBS Boot volume size

----


---

[GitHub] brooklyn-docs pull request #238: Specify EBS boot volume size

Posted by drigodwin <gi...@git.apache.org>.
Github user drigodwin commented on a diff in the pull request:

    https://github.com/apache/brooklyn-docs/pull/238#discussion_r151664428
  
    --- Diff: guide/locations/_AWS.md ---
    @@ -42,6 +42,21 @@ Below are examples of configuration options that use values specific to AWS EC2:
       [security groups](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html).
       For example, `securityGroups: mygroup1` or `securityGroups: [ mygroup1, mygroup2 ]`.
     
    +### EBS boot volume size
    +
    +The size of the EBS boot volume for a VM can be specified using `mapNewVolumeToDeviceName` in `templateOptions` as shown below:
    +
    +    location:
    +      jclouds:aws-ec2:
    +        region: ...
    +        templateOptions:
    +          mapNewVolumeToDeviceName:
    +           - /dev/sda1
    +           - 123
    +           - true
    --- End diff --
    
    The indentation here is correct


---

[GitHub] brooklyn-docs pull request #238: Specify EBS boot volume size

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/brooklyn-docs/pull/238


---

[GitHub] brooklyn-docs pull request #238: Specify EBS boot volume size

Posted by tbouron <gi...@git.apache.org>.
Github user tbouron commented on a diff in the pull request:

    https://github.com/apache/brooklyn-docs/pull/238#discussion_r151662204
  
    --- Diff: guide/locations/_AWS.md ---
    @@ -42,6 +42,21 @@ Below are examples of configuration options that use values specific to AWS EC2:
       [security groups](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html).
       For example, `securityGroups: mygroup1` or `securityGroups: [ mygroup1, mygroup2 ]`.
     
    +### EBS boot volume size
    +
    +The size of the EBS boot volume for a VM can be specified using `mapNewVolumeToDeviceName` in `templateOptions` as shown below:
    +
    +    location:
    +      jclouds:aws-ec2:
    +        region: ...
    +        templateOptions:
    +          mapNewVolumeToDeviceName:
    +           - /dev/sda1
    +           - 123
    +           - true
    +
    +Where `/dev/sda1` is the device name of the boot volume on the selected AMI and `123` is the size of the volume in gigabytes.
    --- End diff --
    
    Probably worth explaining what the 3rd parameters is?


---

[GitHub] brooklyn-docs pull request #238: Specify EBS boot volume size

Posted by tbouron <gi...@git.apache.org>.
Github user tbouron commented on a diff in the pull request:

    https://github.com/apache/brooklyn-docs/pull/238#discussion_r151662096
  
    --- Diff: guide/locations/_AWS.md ---
    @@ -42,6 +42,21 @@ Below are examples of configuration options that use values specific to AWS EC2:
       [security groups](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html).
       For example, `securityGroups: mygroup1` or `securityGroups: [ mygroup1, mygroup2 ]`.
     
    +### EBS boot volume size
    +
    +The size of the EBS boot volume for a VM can be specified using `mapNewVolumeToDeviceName` in `templateOptions` as shown below:
    +
    +    location:
    +      jclouds:aws-ec2:
    +        region: ...
    +        templateOptions:
    +          mapNewVolumeToDeviceName:
    +           - /dev/sda1
    +           - 123
    +           - true
    --- End diff --
    
    Looks like the indentation is wrong here: should be either on the same level as`mapNewVolumeToDeviceName` or down by 2 spaces


---