bootstrap-vz/bootstrapvz/providers/azure
2023-06-21 10:04:07 +02:00
..
assets Patch udev init script to fix ROOTDELAY boot issue 2015-06-29 05:05:30 -07:00
tasks add latest debian releases 2023-06-21 10:04:07 +02:00
__init__.py fix pylint W0403(relative-import) paths 2018-02-25 08:37:17 +00:00
manifest-schema.yml Bootstrap azure images directly to VHD 2015-10-14 22:40:15 +02:00
README.rst Compat with new sphinx 2016-03-04 01:21:52 +01:00

Azure
=====

This provider generates raw images for Microsoft Azure computing
platform.


Manifest settings
-----------------

Provider
~~~~~~~~

-  ``waagent``: Waagent specific settings.
   ``required``

    -  ``conf``: Path to ``waagent.conf`` that should override the default
       ``optional``
    -  ``version``: Version of waagent to install.
       Waagent versions are available at:
       https://github.com/Azure/WALinuxAgent/releases
       ``required``

Example:

.. code-block:: yaml

    ---
    provider:
      name: azure
      waagent:
        conf: /root/waagent.conf
        version: 2.0.4

The Windows Azure Linux Agent can automatically configure swap space
using the local resource disk that is attached to the VM after
provisioning on Azure. Modify the following parameters in
/etc/waagent.conf appropriately:

::

    ResourceDisk.Format=y
    ResourceDisk.Filesystem=ext4
    ResourceDisk.MountPoint=/mnt/resource
    ResourceDisk.EnableSwap=y
    ResourceDisk.SwapSizeMB=2048    ## NOTE: set this to whatever you need it to be.