-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathManagementController.cs
305 lines (237 loc) · 12.4 KB
/
ManagementController.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Hosting;
using Microsoft.Azure.Management.Fluent;
using Microsoft.Azure.Management.ResourceManager.Fluent;
using Microsoft.Azure.Management.ResourceManager.Fluent.Authentication;
using Microsoft.Azure.Management.ContainerRegistry.Fluent;
using Nito.AsyncEx;
using Microsoft.Azure.Management.ContainerInstance.Fluent;
using System.Diagnostics;
namespace Frontend
{
[ApiController]
[Route("mgmt")]
public class ManagementController : ControllerBase
{
private static Random _random = new Random(Environment.TickCount);
private static AsyncLock _mutex = new AsyncLock();
private readonly IConfiguration _config;
private readonly IHostEnvironment _hostEnv;
private readonly ILogger<ManagementController> _log;
public ManagementController(IConfiguration config,
IHostEnvironment hostEnv,
ILogger<ManagementController> log)
{
if (config == null)
{
throw new ArgumentNullException(nameof(config));
}
if (hostEnv == null)
{
throw new ArgumentNullException(nameof(hostEnv));
}
if (log == null)
{
throw new ArgumentNullException(nameof(log));
}
_config = config;
_hostEnv = hostEnv;
_log = log;
}
[HttpPost("scaleout")]
public async Task ScaleOut()
{
Debug.Assert(_log != null);
_log.LogInformation("Scaling out the actor cluster");
Debug.Assert(_config != null);
var name = _config["ACG_ROOT_NAME"];
if (string.IsNullOrWhiteSpace(name))
{
throw new InvalidOperationException("Unable to resolve CONTAINER GROUP NAME from configuration.");
}
var rg = $"{name}-rg";
var aci_name = $"{name}cg{GetRandomString(4)}";
var acr_uri = $"{name}registry.azurecr.io";
var acr_user = $"{name}registry";
var la_name = $"{name}loganalyticsworkspace";
var azure = await GetAzureContext().ConfigureAwait(false);
Debug.Assert(azure != null);
await CreateNewAci(azure, rg, aci_name, acr_uri, acr_user).ConfigureAwait(false);
await CreateNewMetricsOutput(azure, rg, aci_name, la_name).ConfigureAwait(false);
}
[HttpPost("scalein")]
public async Task ScaleIn()
{
Debug.Assert(_log != null);
_log.LogInformation("Scaling in the actor cluster");
var name = _config["ACG_ROOT_NAME"];
if (string.IsNullOrWhiteSpace(name))
{
throw new InvalidOperationException("Unable to resolve CONTAINER GROUP NAME from configuration.");
}
var rg = $"{name}-rg";
using (await _mutex.LockAsync())
{
var azure = await GetAzureContext().ConfigureAwait(false);
Debug.Assert(azure != null);
Debug.Assert(azure.ContainerGroups != null);
var existingGroups = await azure.ContainerGroups.ListByResourceGroupAsync(rg).ConfigureAwait(false);
if (existingGroups == null)
{
throw new InvalidOperationException("Unable to resolve existing ACI containe groups from Azure.");
}
if (existingGroups.Count() > 1)
{
var group = existingGroups.Where(g => ! g.Name.EndsWith("cg1234")).First();
Debug.Assert(group != null);
await group.StopAsync().ConfigureAwait(false);
await RemoveMetricsOutput(azure, rg, group.Name).ConfigureAwait(false);
await azure.ContainerGroups.DeleteByIdAsync(group.Id).ConfigureAwait(false);
}
}
}
private async Task RemoveMetricsOutput(IAzure azure, string rg, string aci_name)
{
Debug.Assert(azure != null);
Debug.Assert(!string.IsNullOrWhiteSpace(rg));
Debug.Assert(!string.IsNullOrWhiteSpace(aci_name));
var resourceId = $"/subscriptions/{azure.SubscriptionId}/resourcegroups/{rg}/providers/Microsoft.ContainerInstance/containerGroups/{aci_name}";
var diagnosticSettingName = $"{aci_name}metricsoutput";
Debug.Assert(azure.DiagnosticSettings != null);
await azure.DiagnosticSettings.DeleteAsync(resourceId, diagnosticSettingName).ConfigureAwait(false);
}
private async Task CreateNewMetricsOutput(IAzure azure, string rg, string aci_name, string la_name)
{
Debug.Assert(azure != null);
Debug.Assert(!string.IsNullOrWhiteSpace(rg));
Debug.Assert(!string.IsNullOrWhiteSpace(aci_name));
Debug.Assert(!string.IsNullOrWhiteSpace(la_name));
var la_resource_Id = $"/subscriptions/{azure.SubscriptionId}/resourcegroups/{rg}/providers/microsoft.operationalinsights/workspaces/{la_name}";
var resourceId = $"/subscriptions/{azure.SubscriptionId}/resourcegroups/{rg}/providers/Microsoft.ContainerInstance/containerGroups/{aci_name}";
Debug.Assert(azure.DiagnosticSettings != null);
await azure.DiagnosticSettings
.Define($"{aci_name}metricsoutput")
.WithResource(resourceId)
.WithLogAnalytics(la_resource_Id)
.WithMetric("AllMetrics", TimeSpan.FromMinutes(1), 7)
.CreateAsync()
.ConfigureAwait(false);
}
private async Task CreateNewAci(IAzure azure, string rg, string aci_name, string acr_uri, string acr_user)
{
Debug.Assert(azure != null);
Debug.Assert(!string.IsNullOrWhiteSpace(rg));
Debug.Assert(!string.IsNullOrWhiteSpace(aci_name));
Debug.Assert(!string.IsNullOrWhiteSpace(acr_uri));
Debug.Assert(!string.IsNullOrWhiteSpace(acr_user));
// get existing ACI instance
// there is no means to query network profiles via .NET SDK <sigh>
// also, when you get a profile ID from an existing container it comes as a single string,
// and below we need it in separate chunks <sigh> <sigh>
var existingContainerGroup = (await GetRootActorContainerGroup(azure, rg).ConfigureAwait(false));
if (existingContainerGroup == null)
{
throw new InvalidOperationException("Unable to resolve existing container group in Azure.");
}
Debug.Assert(existingContainerGroup.NetworkProfileId != null);
Debug.Assert(existingContainerGroup.Containers != null);
var profileName = existingContainerGroup.NetworkProfileId.Split("/").Last();
var existingContainerInstance = existingContainerGroup.Containers.Single();
if (existingContainerInstance.Value == null)
{
throw new InvalidOperationException("Unable to resolve existing container instance in Azure.");
}
Debug.Assert(existingContainerInstance.Value.Ports != null);
Debug.Assert(existingContainerInstance.Value.Image != null);
Debug.Assert(existingContainerInstance.Value.EnvironmentVariables != null);
Debug.Assert(existingContainerInstance.Value.Resources != null);
Debug.Assert(existingContainerInstance.Value.Resources.Requests != null);
var ports = existingContainerInstance.Value.Ports.Select(p => p.Port).ToArray();
var image = existingContainerInstance.Value.Image;
var env_vars = existingContainerInstance.Value.EnvironmentVariables.ToDictionary(e => e.Name, e => e.Value);
var cpu = existingContainerInstance.Value.Resources.Requests.Cpu;
var ram = existingContainerInstance.Value.Resources.Requests.MemoryInGB;
Debug.Assert(azure.ContainerRegistries != null);
// get ACR password
var existingRegistry = await azure.ContainerRegistries.GetByResourceGroupAsync(rg, acr_user).ConfigureAwait(false);
if (existingRegistry == null)
{
throw new InvalidOperationException("Unable to resolve existing container registry in Azure.");
}
var acr_pwd = (await existingRegistry.GetCredentialsAsync().ConfigureAwait(false)).AccessKeys[AccessKeyType.Primary];
Debug.Assert(_config != null);
var la_workspace_id = _config["LOG_ANALYTICS_WORKSPACE_ID"];
var la_workspace_key = _config["LOG_ANALYTICS_WORKSPACE_KEY"];
Debug.Assert(azure.ContainerGroups != null);
await azure.ContainerGroups
.Define(aci_name)
.WithRegion(existingContainerGroup.Region)
.WithExistingResourceGroup(rg)
.WithLinux()
.WithPrivateImageRegistry(acr_uri, acr_user, acr_pwd)
.WithoutVolume()
.DefineContainerInstance(aci_name)
.WithImage(image)
.WithExternalTcpPorts(ports)
.WithCpuCoreCount(cpu)
.WithMemorySizeInGB(ram)
.WithEnvironmentVariables(env_vars)
.Attach()
.WithLogAnalytics(la_workspace_id, la_workspace_key)
.WithNetworkProfileId(azure.SubscriptionId, rg, profileName)
.CreateAsync()
.ConfigureAwait(false);
}
private Task<IContainerGroup> GetRootActorContainerGroup(IAzure azure, string resourceGroup)
{
Debug.Assert(azure != null);
Debug.Assert(!string.IsNullOrWhiteSpace(resourceGroup));
Debug.Assert(_config != null);
var name = _config["ACG_ROOT_NAME"];
var cg_name = $"{name}cg1234";
Debug.Assert(azure.ContainerGroups != null);
return azure.ContainerGroups.GetByResourceGroupAsync(resourceGroup, cg_name);
}
private string GetRandomString(int length)
{
Debug.Assert(length > 0);
const string chars = "abcdefghijklmnopqrstuvwxyz0123456789";
return new string(
Enumerable.Repeat(chars, length)
.Select(s => s[_random.Next(s.Length)])
.ToArray());
}
private async Task<IAzure> GetAzureContext()
{
var creds = GetAzureCredentials();
Debug.Assert(creds != null);
return await Azure.Authenticate(creds).WithDefaultSubscriptionAsync().ConfigureAwait(false);
}
private AzureCredentials GetAzureCredentials()
{
var factory = new AzureCredentialsFactory();
Debug.Assert(factory != null);
Debug.Assert(_hostEnv != null);
if (_hostEnv.IsDevelopment())
{
return factory.FromFile("./azureauth.json");
}
else
{
Debug.Assert(_config != null);
var tenantId = _config["SERVICE_PRINCIPAL_TENANT_ID"];
var servicePrincipalId = _config["SERVICE_PRINCIPAL_ID"];
var servicePrincipalSecret = _config["SERVICE_PRINCIPAL_SECRET"];
return factory.FromServicePrincipal(servicePrincipalId,
servicePrincipalSecret,
tenantId,
AzureEnvironment.AzureGlobalCloud);
}
}
}
}