You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.3 KiB

7 years ago
  1. # Deploying Resources On Azure
  2. ## Pre-requisites
  3. 1. [Azure CLI 2.0 Installed](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli)
  4. 2. Azure subscription created
  5. Login into your azure subscription by typing `az login` (note that you maybe need to use `az account set` to set the subscription to use). Refer to [this article](https://docs.microsoft.com/en-us/cli/azure/authenticate-azure-cli) for more details
  6. ## Deploying using CLI
  7. ## Deploying Virtual machines to host the services
  8. 1. [Deploying a Linux VM to run single-server development environment using docker-machine (**Recommended for development environments**)](az/vms/docker-machine.md)
  9. 2. [Deploying a Linux VM or Windows Server 2016 to run a single-server development environment using ARM template (**Recommended for creating testing environments**)](az/vms/plain-vm.md)
  10. Using `docker-machine` is the recommended way to create a VM with docker installed. But it is limited to Linux based VMs.
  11. ## Deploying Azure resources used by the services
  12. 1. [Deploying SQL Server and databases](az/sql/readme.md)
  13. 2. [Deploying Azure Service Bus](az/servicebus/readme.md)
  14. 3. [Deploying Redis Cache](az/redis/readme.md)
  15. 4. [Deploying Cosmosdb](az/cosmos/readme.md)
  16. 5. [Deploying Catalog Storage](az/storage/catalog/readme.md)