Azure Virtual Machine Scale Set Target
The azure-vmss
target plugin allows for the scaling of the Nomad cluster
clients via manipulating Azure Virtual Machine Scale
Sets.
The azure-vmss
target plugin requires Azure fingerprinting, which was
added in Nomad 1.0. If you are running a previous version of Nomad you will to
set a meta tag in all of your nodes.
Agent Configuration Options
To use the azure-vmss
target plugin, the agent configuration needs to be
populated with the appropriate target block. Authentication to the Azure API
can be supplied in a number of ways.
Virtual Machine Identities
When using virtual machine identities you will need to
provide a user-managed identity with the Contributor
role and set the
subscription_id
in the Autoscaler configuration file:
Configuration file
Credentials should be injected into the configuration via a template rather than as environment variables. This ensures the credentials are passed only to the plugin, rather than being available for all plugins and the agent process. It is recommended, if possible to use the Vault Azure Secrets engine for supplying access credentials to the plugin.
tenant_id
(string: "")
- The ID of the tenant to authenticate to.client_id
(string: "")
- The app ID of the user-assigned identity in Azure Active Directory.secret_access_key
(string: "")
- The secret key ID used to authenticate with the Azure API.subscription_id
(string: "")
- The ID of the subscription to authenticate to.
Nomad ACL
When using a Nomad cluster with ACLs enabled, the plugin will require an ACL token which provides the following permissions:
Policy Configuration Options
resource_group
(string: <required>)
- The name of the Azure resource group within which the virtual machine scale set resides.vm_scale_set
(string: <required>)
- The name of the Azure virtual machine scale set to interact with when performing scaling actions.datacenter
(string: "")
- The Nomad client datacenter identifier used to group nodes into a pool of resource.node_class
(string: "")
- The Nomad client node class identifier used to group nodes into a pool of resource.node_drain_deadline
(duration: "15m")
The Nomad drain deadline to use when performing node draining actions. Note that the default value for this setting differs from Nomad's default of 1h.node_drain_ignore_system_jobs
(bool: "false")
A boolean flag used to control if system jobs should be stopped when performing node draining actions.node_purge
(bool: "false")
A boolean flag to determine whether Nomad clients should be purged when performing scale in actions.node_selector_strategy
(string: "least_busy")
The strategy to use when selecting nodes for termination. Refer to the node selector strategy documentation for more information.
Client meta tag
The azure-vmss
target plugin requires Nomad 1.0 for Azure fingerprinting.
Alternatively, you can set a client meta tag called
unique.platform.azure.name
with the value being the Azure VMSS node name.
This can be retrieved programatically via the Azure Instance Metadata
service.