This template allows you to deploy an instance of Spinnaker on a Linux Ubuntu 14.04 LTS VM in an existing Virtual Network. This will deploy a VM in the resource group location and return the FQDN of the VM. You will have to manually configure the instance to target a deployment environment.
This Azure Resource Manager template was created by a member of the community and not by Microsoft. Each Resource Manager template is licensed to you under a license agreement by its owner, not Microsoft. Microsoft is not responsible for Resource Manager templates provided and licensed by community members and does not screen for security, compatibility, or performance. Community Resource Manager templates are not supported under any Microsoft support program or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
adminUsername | User name for the Virtual Machine. |
sshPublicKey | Configure the linux machines with the SSH public key string. Your key should include three parts, for example 'ssh-rsa AAAAB...snip...UcyupgH azureuser@linuxvm' |
spinnakerDnsPrefix | Unique DNS Name for the Public IP used to access the Virtual Machine. |
existingVirtualNetworkName | Name of the existing VNET |
existingVirtualNetworkResourceGroup | Name of the existing VNET resource group |
subnetName | Name of the subnet in the virtual network you want to use |
location | Location for all resources. |
Use the template
PowerShell
New-AzureRmResourceGroupDeployment -Name <deployment-name> -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-spinnaker-existing-vnet/azuredeploy.jsonInstall and configure Azure PowerShell
Command line
azure config mode armInstall and Configure the Azure Cross-Platform Command-Line Interface
azure group deployment create <my-resource-group> <my-deployment-name> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-spinnaker-existing-vnet/azuredeploy.json