The Azure Quickstart templates are currently available in English
Start running your Golang Buffalo Application on Azure quickly and cheaply.
Этот шаблон Azure Resource Manager (ARM) был создан участником сообщества, а не Майкрософт. Каждый шаблон ARM лицензирован для вас в соответствии с условиями лицензионного соглашения с владельцем, а не с Майкрософт. Майкрософт не несет ответственности за шаблоны ARM, предоставленные и лицензированные членами сообщества, и не отслеживает их безопасности, совместимости или производительности. Шаблоны ARM, созданные сообществом, не поддерживаются ни в соответствии с какой-либо программой поддержки Майкрософт, ни какими-либо службами поддержки Майкрософт и предоставляются КАК ЕСТЬ без каких-либо гарантий.
Параметры
Имя параметра | Описание |
---|---|
location | The Azure Region which should be targeted while provisioning the infrastructure described in this template. |
imageName | The image which defines the application to be hosted in Azure. |
name | A unique name to identify the site, and its relate assets once it is created. |
database | The flavor of database that should be deployed alongside this application. |
databaseName | The name that will identify the database which is created, should one be created. |
databaseAdministratorLogin | The user handle for the administrator of the database to be created. |
databaseAdministratorLoginPassword | The password for the administrator of the database to be created. |
dockerRegistryAccess | Denotes whether the image selected lives in a public or private Docker registry. |
dockerRegistryServerURL | The url of the Docker registry which hosts the repository being used to host the image for your site. |
dockerRegistryServerUsername | The user handle used to authenticate against the private Docker registry, if applicable. |
dockerRegistryServerPassword | The password used to authenticate against the private Docker registry, if applicable. |
Использование шаблона
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentУстановка и настройка служб Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/gobuffalo/azuredeploy.json
Командная строка
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentУстановка и настройка кросс-платформенного интерфейса командной стройки Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/gobuffalo/azuredeploy.json