mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
Add docs for EC2 specific manifest settings
This commit is contained in:
parent
0b9c8181fe
commit
70be6b8198
1 changed files with 46 additions and 3 deletions
|
@ -14,8 +14,11 @@ any userdata supplied (if the userdata begins with ``#!`` it will be
|
||||||
run). Set the variable ``install_init_scripts`` to ``False`` in order
|
run). Set the variable ``install_init_scripts`` to ``False`` in order
|
||||||
to disable this behaviour.
|
to disable this behaviour.
|
||||||
|
|
||||||
|
Manifest settings
|
||||||
|
-----------------
|
||||||
|
|
||||||
Credentials
|
Credentials
|
||||||
-----------
|
~~~~~~~~~~~
|
||||||
|
|
||||||
The AWS credentials can be configured in two ways: Via the manifest or
|
The AWS credentials can be configured in two ways: Via the manifest or
|
||||||
through environment variables. To bootstrap S3 backed instances you will
|
through environment variables. To bootstrap S3 backed instances you will
|
||||||
|
@ -55,12 +58,52 @@ Example:
|
||||||
---
|
---
|
||||||
provider:
|
provider:
|
||||||
name: ec2
|
name: ec2
|
||||||
virtualization: hvm
|
|
||||||
enhanced_networking: simple
|
|
||||||
credentials:
|
credentials:
|
||||||
access-key: AFAKEACCESSKEYFORAWS
|
access-key: AFAKEACCESSKEYFORAWS
|
||||||
secret-key: thes3cr3tkeyf0ryourawsaccount/FS4d8Qdva
|
secret-key: thes3cr3tkeyf0ryourawsaccount/FS4d8Qdva
|
||||||
|
|
||||||
|
Virtualization
|
||||||
|
~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
EC2 supports both paravirtual and hardware virtual machines.
|
||||||
|
The virtualization type determines various factors about the
|
||||||
|
virtual machine performance (read more about this `in the EC2 docs`__).
|
||||||
|
|
||||||
|
__ http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/virtualization_types.html
|
||||||
|
|
||||||
|
- ``virtualization``: The virtualization type
|
||||||
|
Valid values: ``pvm``, ``hvm``
|
||||||
|
``required``
|
||||||
|
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
.. code:: yaml
|
||||||
|
|
||||||
|
---
|
||||||
|
provider:
|
||||||
|
name: ec2
|
||||||
|
virtualization: hvm
|
||||||
|
|
||||||
|
Enhanced networking
|
||||||
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Install enhanced networking drivers to take advantage of SR-IOV
|
||||||
|
capabilities on hardware virtual machines.
|
||||||
|
Read more about this in `the EC2 docs`__.
|
||||||
|
|
||||||
|
__ http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/enhanced-networking.html
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
.. code:: yaml
|
||||||
|
|
||||||
|
---
|
||||||
|
provider:
|
||||||
|
name: ec2
|
||||||
|
virtualization: hvm
|
||||||
|
enhanced_networking: simple
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue