Skip to content

Commit d856b7a

Browse files
authored
Merge pull request #13 from armosec/harbor-fact
add harbor registry factory
2 parents 22c4b47 + e18407a commit d856b7a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

registryclients/factory.go

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ func GetRegistryClient(registry armotypes.ContainerImageRegistry) (interfaces.Re
1515
} else {
1616
return nil, fmt.Errorf("failed to convert registry to QuayImageRegistry type")
1717
}
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+
}
1824
}
1925
return nil, fmt.Errorf("unsupported provider %s", provider)
2026
}

0 commit comments

Comments
 (0)