mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
e96c80c344
added sync logic for OCI artifacts Signed-off-by: Petu Eusebiu <peusebiu@cisco.com>
32 lines
882 B
Go
32 lines
882 B
Go
//go:build !sync
|
|
// +build !sync
|
|
|
|
package extensions
|
|
|
|
import (
|
|
"context"
|
|
goSync "sync"
|
|
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
"zotregistry.io/zot/pkg/log"
|
|
"zotregistry.io/zot/pkg/storage"
|
|
)
|
|
|
|
// EnableSyncExtension ...
|
|
func EnableSyncExtension(ctx context.Context,
|
|
config *config.Config, wg *goSync.WaitGroup,
|
|
storeController storage.StoreController, log log.Logger,
|
|
) {
|
|
log.Warn().Msg("skipping enabling sync extension because given zot binary doesn't include this feature," +
|
|
"please build a binary that does so")
|
|
}
|
|
|
|
// SyncOneImage ...
|
|
func SyncOneImage(ctx context.Context, config *config.Config, storeController storage.StoreController,
|
|
repoName, reference string, artifactType string, log log.Logger,
|
|
) error {
|
|
log.Warn().Msg("skipping syncing on demand because given zot binary doesn't include this feature," +
|
|
"please build a binary that does so")
|
|
|
|
return nil
|
|
}
|