Les modèles de démarrage rapide Azure sont actuellement disponibles en anglais.
Deploys an autoscaling Moodle cluster with objectfs storage, Azure redis, Azure MySQL/Postgres, and Elasticsearch. Can be configured for very small or very large sites. Deploys frontend components to a private network with a jumphost to access nodes. Requires keyed SSH access.
Ce modèle ARM (Azure Resource Manager) a été créé par un membre de la communauté et non par Microsoft. Chaque modèle ARM vous est concédé sous licence sous un contrat de licence par son propriétaire, et non par Microsoft. Microsoft ne peut pas être tenu responsable des modèles ARM fournis et concédés sous licence par les membres de la communauté, ni ne vérifie leur sécurité, leur compatibilité ou leurs performances. Les modèles ARM de la communauté ne sont pris en charge par aucun programme ou service de support Microsoft. Ils sont rendus disponibles EN L'ÉTAT sans garantie d'aucune sorte.
Paramètres
Nom du paramètre | Description |
---|---|
_artifactsLocation | The base URI where artifacts required by this template are located including a trailing '/' |
_artifactsLocationSasToken | The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated. Use the defaultValue if the staging location is not secured. |
applyScriptsSwitch | Switch to process or bypass all scripts/extensions |
azureBackupSwitch | Switch to configure AzureBackup and enlist VM's |
vnetGwDeploySwitch | Switch to deploy a virtual network gateway or not |
installO365pluginsSwitch | Switch to install Moodle Office 365 plugins |
installElasticSearchSwitch | Switch to install Moodle ElasticSearch plugins & VMs |
storageAccountType | Storage Account type |
dbServerType | Database type |
fileServerType | File server type: GlusterFS, Azure Files (CIFS)--disabled due to too slow perf, NFS--not highly available |
webServerType | Web server type |
controllerVmSku | VM size for the controller node |
autoscaleVmSku | VM size for autoscaled nodes |
autoscaleVmCount | Maximum number of autoscaled nodes |
elasticVmSku | VM size for the elastic search nodes |
firewallRuleName | Database firewall rule name |
gatewaySubnet | name for Virtual network gateway subnet |
gatewayType | Virtual network gateway type |
glusterVmSku | VM size for the gluster nodes |
fileServerDiskSize | Size per disk for gluster nodes or nfs server |
fileServerDiskCount | Number of disks in raid0 per gluster node or nfs server |
moodleVersion | The Moodle version you want to install. |
dbLogin | Database admin username |
siteURL | URL for Moodle site |
skuCapacityDTU | MySql/Postgresql database trasaction units |
skuFamily | MySql/Postgresql sku family |
skuName | MySql/Postgresql sku name |
skuSizeMB | MySql/Postgresql sku size in MB. For Basic tier, minimum 50GB, increased by 125GB up to 1TB. For Standard tier, minimum 125GB, increase by 125GB up to 1TB |
skuTier | MySql/Postgresql sku tier |
sshPublicKey | ssh public key |
sshUsername | ssh user name |
sslEnforcement | MySql/Postgresql SSL connection |
postgresVersion | Postgresql version |
mysqlVersion | Mysql version |
vNetAddressSpace | Address range for the Moodle virtual network - presumed /16 - further subneting during vnet creation |
vpnType | Virtual network gateway vpn type |
location | Location for all resources. |
Utiliser le modèle
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 deploymentInstaller et configurer Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/moodle/moodle-scalable-cluster-ubuntu/azuredeploy.json
Ligne de commande
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 deploymentInstaller et configurer l'interface de ligne de commande multiplateforme Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/moodle/moodle-scalable-cluster-ubuntu/azuredeploy.json