зеркало из https://github.com/github/docs.git
172 строки
4.4 KiB
JSON
172 строки
4.4 KiB
JSON
{
|
|
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"appName": {
|
|
"defaultValue": null,
|
|
"type": "string",
|
|
"minLength": 5,
|
|
"maxLength": 63,
|
|
"metadata": {
|
|
"description": "A unique name for the app"
|
|
}
|
|
},
|
|
"location": {
|
|
"type": "String"
|
|
},
|
|
"containerImage": {
|
|
"type": "string",
|
|
"defaultValue": null,
|
|
"metadata": {
|
|
"description": "Container image to deploy"
|
|
}
|
|
},
|
|
"dockerRegistryUrl": {
|
|
"type": "String",
|
|
"metadata": {
|
|
"description": "Should be a valid host name without protocol"
|
|
}
|
|
},
|
|
"dockerRegistryUsername": {
|
|
"type": "String"
|
|
},
|
|
"dockerRegistryPassword": {
|
|
"type": "SecureString"
|
|
},
|
|
"storageAccountName": {
|
|
"type": "String"
|
|
},
|
|
"storageAccountKey": {
|
|
"type": "SecureString"
|
|
}
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.ContainerInstance/containerGroups",
|
|
"name": "[parameters('appName')]",
|
|
"apiVersion": "2021-07-01",
|
|
"location": "[resourceGroup().location]",
|
|
"properties": {
|
|
"containers": [
|
|
{
|
|
"name": "app",
|
|
"properties": {
|
|
"image": "[parameters('containerImage')]",
|
|
"ports": [
|
|
{
|
|
"protocol": "TCP",
|
|
"port": 4000
|
|
}
|
|
],
|
|
"environmentVariables": [
|
|
{
|
|
"name": "PORT",
|
|
"value": "4000"
|
|
},
|
|
{
|
|
"name": "NODE_ENV",
|
|
"value": "production"
|
|
},
|
|
{
|
|
"name": "WEB_CONCURRENCY",
|
|
"value": "1"
|
|
},
|
|
{
|
|
"name": "ENABLED_LANGUAGES",
|
|
"value": "en"
|
|
}
|
|
],
|
|
"resources": {
|
|
"requests": {
|
|
"memoryInGB": 4,
|
|
"cpu": 1
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "caddy-ssl-server",
|
|
"properties": {
|
|
"image": "caddy:2.4.6",
|
|
"command": [
|
|
"caddy",
|
|
"reverse-proxy",
|
|
"--from",
|
|
"[concat(parameters('appName'), '.', parameters('location'), '.azurecontainer.io')]",
|
|
"--to",
|
|
"localhost:4000"
|
|
],
|
|
"ports": [
|
|
{
|
|
"protocol": "TCP",
|
|
"port": 443
|
|
},
|
|
{
|
|
"protocol": "TCP",
|
|
"port": 80
|
|
}
|
|
],
|
|
"environmentVariables": [],
|
|
"resources": {
|
|
"requests": {
|
|
"memoryInGB": 1,
|
|
"cpu": 1
|
|
}
|
|
},
|
|
"volumeMounts": [
|
|
{
|
|
"name": "caddy-data",
|
|
"mountPath": "/data"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"volumes": [
|
|
{
|
|
"name": "caddy-data",
|
|
"azureFile": {
|
|
"shareName": "caddy",
|
|
"storageAccountName": "[parameters('storageAccountName')]",
|
|
"storageAccountKey": "[parameters('storageAccountKey')]"
|
|
}
|
|
}
|
|
],
|
|
"imageRegistryCredentials": [
|
|
{
|
|
"server": "[parameters('dockerRegistryUrl')]",
|
|
"username": "[parameters('dockerRegistryUsername')]",
|
|
"password": "[parameters('dockerRegistryPassword')]"
|
|
}
|
|
],
|
|
"restartPolicy": "Always",
|
|
"ipAddress": {
|
|
"ports": [
|
|
{
|
|
"protocol": "TCP",
|
|
"port": 443
|
|
},
|
|
{
|
|
"protocol": "TCP",
|
|
"port": 4000
|
|
},
|
|
{
|
|
"protocol": "TCP",
|
|
"port": 80
|
|
}
|
|
],
|
|
"type": "Public",
|
|
"dnsNameLabel": "[parameters('appName')]"
|
|
},
|
|
"osType": "Linux"
|
|
}
|
|
}
|
|
],
|
|
"outputs": {
|
|
"defaultHostName": {
|
|
"value": "[reference(resourceId('Microsoft.ContainerInstance/containerGroups', parameters('appName'))).ipAddress.fqdn]",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|