We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 22c4b47 + e18407a commit d856b7aCopy full SHA for d856b7a
registryclients/factory.go
@@ -15,6 +15,12 @@ func GetRegistryClient(registry armotypes.ContainerImageRegistry) (interfaces.Re
15
} else {
16
return nil, fmt.Errorf("failed to convert registry to QuayImageRegistry type")
17
}
18
+ case armotypes.Harbor:
19
+ if harborRegistry, ok := registry.(*armotypes.HarborImageRegistry); ok {
20
+ return &HarborRegistryClient{Registry: harborRegistry}, nil
21
+ } else {
22
+ return nil, fmt.Errorf("failed to convert registry to HarborImageRegistry type")
23
+ }
24
25
return nil, fmt.Errorf("unsupported provider %s", provider)
26
0 commit comments