-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimporter.go
59 lines (46 loc) · 1.37 KB
/
importer.go
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
package main
import (
"context"
"log"
"strings"
"time"
"github.com/Azure/azure-sdk-for-go/profiles/latest/containerregistry/mgmt/containerregistry"
)
func ImportImage(image string, acrClient *containerregistry.RegistriesClient) error {
// Builds Params to pass to import request
importParams := ImportImagePreparer(image)
log.Printf("Attempting to import image: %s", image)
future, err := acrClient.ImportImage(
ctx,
*resourceGroupName,
*registryName,
importParams,
)
if err != nil {
return err
}
// Adds a timeout as invalid registries are not checked by Azure after import is created
deadline, cancel := context.WithTimeout(ctx, 120*time.Second)
defer cancel()
err = future.WaitForCompletionRef(deadline, acrClient.Client)
if err != nil {
return err
}
log.Println("Image imported:", image)
return nil
}
func ImportImagePreparer(image string) containerregistry.ImportImageParameters {
// Split String on Registry URL and image name with paths
registryUri := strings.Split(image, "/")[0]
imageName := strings.SplitN(image, "/", 2)[1]
importSource := containerregistry.ImportSource{
RegistryURI: ®istryUri,
SourceImage: &imageName,
}
importParams := containerregistry.ImportImageParameters{
Source: &importSource,
Mode: "Force", // Force import to overwrite existing images
TargetTags: &[]string{imageName},
}
return importParams
}