Changeset 7374 for branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views
- Timestamp:
- 01/19/12 17:45:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/AddAzureServiceDialog.cs
r7366 r7374 3 3 using System.ComponentModel; 4 4 using System.Windows.Forms; 5 using HeuristicLab.Clients.Hive.CloudManager.Azure; 5 6 using HeuristicLab.Clients.Hive.CloudManager.Model; 6 7 using HeuristicLab.Core; … … 41 42 SetGroupBoxControlsEnabled(gbNewHostedService, cbNewHostedService.Checked); 42 43 } 44 45 certificateFile = string.Empty; 46 certificatePassword = string.Empty; 43 47 44 48 workerUpdate = new BackgroundWorker(); … … 224 228 int instanceCount = parameters.Item7; 225 229 226 // STEP 1 - Create Hosted Service230 // STEP 1 - Create Hosted Service 227 231 if (newHostedServiceChecked) { 228 232 if (regionChecked) { … … 232 236 } 233 237 } 238 239 // STEP 2 - Add Certificate 240 if (certFile != string.Empty) { 241 CloudManagerClient.Instance.AzureProvider.AddCertificate(sub, hostedService, certFile, certPw); 242 } 243 244 // STEP 3 - Create Deployment 245 CloudManagerClient.Instance.AzureProvider.CreateDeployment(sub, hostedService.ServiceName, Guid.NewGuid().ToString(), Constants.DeploymentSlotStaging, Constants.DeploymentPackageUrl, Constants.DeploymentConfigurationUrl, Constants.DeploymentLabel, instanceCount); 234 246 235 247 }
Note: See TracChangeset
for help on using the changeset viewer.