Adilson de Almeida Jr
Adilson de Almeida Jr

Reputation: 2755

Azure publish using powershell

Is there a way to publish a cloud service to Azure without a "deploy project"? My actual challenge is to publish the same cloud service to a lot of cloud services, using different configurations.

Upvotes: 0

Views: 143

Answers (2)

Simon W
Simon W

Reputation: 5496

Adilson - you can deploy to Azure without a deployment project but you'd struggle as you would need to hand craft the necessary package (files to deploy) and configuration elements. As kwill said there are PowerShell Cmdlets for creating cloud services (New-AzureService) that are at that point an empty container into which you can deploy items using other Cmdlets.

I have a Gist that shows how to create a new empty Cloud Service here: https://gist.github.com/sjwaight/4186f90f6ae111cd7c52#file-02-setup-cloudservices-ps1 which was a part of a bigger set of blog posts I did on deploying to Azure (http://blog.kloud.com.au/2014/11/04/deploy-an-ultra-high-availability-mvc-web-app-on-microsoft-azure-part-2/).

Upvotes: 1

kwill
kwill

Reputation: 10998

Your question is vague so it is hard to know exactly what you are trying to do, but there are several ways to deploy a package to Azure. I am guessing that the Azure Powershell cmdlets will be your best option. Essentially you would call Upload-Package, then Create-Deployment. More details at http://www.kenneth-truyers.net/2014/02/06/deploying-cloud-services-to-azure-with-powershell/.

Upvotes: 1

Related Questions