forked from dotnet/docker-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCopyAcrImagesCommand.cs
69 lines (60 loc) · 2.79 KB
/
CopyAcrImagesCommand.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Azure.Management.ContainerRegistry.Fluent;
using Microsoft.Azure.Management.ContainerRegistry.Fluent.Models;
using Microsoft.Azure.Management.Fluent;
using Microsoft.Azure.Management.ResourceManager.Fluent;
using Microsoft.Azure.Management.ResourceManager.Fluent.Authentication;
using Microsoft.DotNet.ImageBuilder.ViewModel;
namespace Microsoft.DotNet.ImageBuilder.Commands
{
public class CopyAcrImagesCommand : Command<CopyAcrImagesOptions>
{
public CopyAcrImagesCommand() : base()
{
}
public override async Task ExecuteAsync()
{
Logger.WriteHeading("COPING IMAGES");
string registryName = Manifest.Registry.TrimEnd(".azurecr.io");
await Task.WhenAll(Manifest.GetFilteredPlatformTags().Select(platformTag => ImportImage(platformTag, registryName)));
}
private async Task ImportImage(TagInfo platformTag, string registryName)
{
AzureCredentials credentials = SdkContext.AzureCredentialsFactory
.FromServicePrincipal(Options.Username, Options.Password, Options.Tenant, AzureEnvironment.AzureGlobalCloud);
IAzure azure = Microsoft.Azure.Management.Fluent.Azure
.Configure()
.Authenticate(credentials)
.WithSubscription(Options.Subscription);
string destTagName = platformTag.FullyQualifiedName.TrimStart($"{Manifest.Registry}/");
string sourceTagName = destTagName.Replace(Options.RepoPrefix, Options.SourceRepoPrefix);
ImportImageParametersInner importParams = new ImportImageParametersInner()
{
Mode = "Force",
Source = new ImportSource(
sourceTagName,
$"/subscriptions/{Options.Subscription}/resourceGroups/{Options.ResourceGroup}/providers" +
$"/Microsoft.ContainerRegistry/registries/{registryName}"),
TargetTags = new string[] { destTagName }
};
Logger.WriteMessage($"Importing '{destTagName}' from '{sourceTagName}'");
if (!Options.IsDryRun)
{
try
{
await azure.ContainerRegistries.Inner.ImportImageAsync(Options.ResourceGroup, registryName, importParams);
}
catch (Exception e)
{
Logger.WriteMessage($"Importing Failure: {destTagName}{Environment.NewLine}{e}");
throw;
}
}
}
}
}