title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.workload | ms.tgt_pltfrm | ms.devlang | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
How to create and deploy a cloud service | Microsoft Docs |
Learn how to create and deploy a cloud service using the Azure portal. |
cloud-services |
jpconnock |
timlt |
56ea2f14-34a2-4ed9-857c-82be4c9d0579 |
cloud-services |
tbd |
na |
na |
article |
05/18/2017 |
jeconnoc |
The Azure portal provides two ways for you to create and deploy a cloud service: Quick Create and Custom Create.
This article explains how to use the Quick Create method to create a new cloud service and then use Upload to upload and deploy a cloud service package in Azure. When you use this method, the Azure portal makes available convenient links for completing all requirements as you go. If you're ready to deploy your cloud service when you create it, you can do both at the same time using Custom Create.
Note
If you plan to publish your cloud service from Azure DevOps, use Quick Create, and then set up Azure DevOps publishing from the Azure Quickstart or the dashboard. For more information, see Continuous Delivery to Azure by Using Azure DevOps, or see help for the Quick Start page.
Three components are required to deploy an application as a cloud service in Azure:
- Service Definition
The cloud service definition file (.csdef) defines the service model, including the number of roles. - Service Configuration
The cloud service configuration file (.cscfg) provides configuration settings for the cloud service and individual roles, including the number of role instances. - Service Package
The service package (.cspkg) contains the application code and configurations and the service definition file.
You can learn more about these and how to create a package here.
Before you can deploy a cloud service, you must create the cloud service package (.cspkg) from your application code and a cloud service configuration file (.cscfg). The Azure SDK provides tools for preparing these required deployment files. You can install the SDK from the Azure Downloads page, in the language in which you prefer to develop your application code.
Three cloud service features require special configurations before you export a service package:
- If you want to deploy a cloud service that uses Secure Sockets Layer (SSL) for data encryption, configure your application for SSL.
- If you want to configure Remote Desktop connections to role instances, configure the roles for Remote Desktop.
- If you want to configure verbose monitoring for your cloud service, enable Azure Diagnostics for the cloud service. Minimal monitoring (the default monitoring level) uses performance counters gathered from the host operating systems for role instances (virtual machines). Verbose monitoring gathers additional metrics based on performance data within the role instances to enable closer analysis of issues that occur during application processing. To find out how to enable Azure Diagnostics, see Enabling diagnostics in Azure.
To create a cloud service with deployments of web roles or worker roles, you must create the service package.
- If you haven't installed the Azure SDK, click Install Azure SDK to open the Azure Downloads page, and then download the SDK for the language in which you prefer to develop your code. (You'll have an opportunity to do this later.)
- If any role instances require a certificate, create the certificates. Cloud services require a .pfx file with a private key. You can upload the certificates to Azure as you create and deploy the cloud service.
-
Log in to the Azure portal.
-
Click Create a resource > Compute, and then scroll down to and click Cloud Service.
-
In the new Cloud Service pane, enter a value for the DNS name.
-
Create a new Resource Group or select an existing one.
-
Select a Location.
-
Click Package. This opens the Upload a package pane. Fill in the required fields. If any of your roles contain a single instance, ensure Deploy even if one or more roles contain a single instance is selected.
-
Make sure that Start deployment is selected.
-
Click OK which will close the Upload a package pane.
-
If you do not have any certificates to add, click Create.
If your deployment package was configured to use certificates, you can upload the certificate now.
-
Select Certificates, and on the Add certificates pane, select the SSL certificate .pfx file, and then provide the Password for the certificate,
-
Click Attach certificate, and then click OK on the Add certificates pane.
-
Click Create on the Cloud Service pane. When the deployment has reached the Ready status, you can proceed to the next steps.
-
Click the cloud service instance.
The status should show that the service is Running.
-
Under Essentials, click the Site URL to open your cloud service in a web browser.
- General configuration of your cloud service.
- Configure a custom domain name.
- Manage your cloud service.
- Configure ssl certificates.