mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
be4b8c6243
"If filtering is requested and applied, the response MUST include an annotation (org.opencontainers.referrers.filtersApplied) denoting that an artifactType filter was applied."" Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
23 lines
668 B
Go
23 lines
668 B
Go
package constants
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
// BlobUploadDir defines the upload directory for blob uploads.
|
|
BlobUploadDir = ".uploads"
|
|
SchemaVersion = 2
|
|
DefaultFilePerms = 0o600
|
|
DefaultDirPerms = 0o700
|
|
RLOCK = "RLock"
|
|
RWLOCK = "RWLock"
|
|
BlobsCache = "blobs"
|
|
DuplicatesBucket = "duplicates"
|
|
OriginalBucket = "original"
|
|
DBExtensionName = ".db"
|
|
DBCacheLockCheckTimeout = 10 * time.Second
|
|
BoltdbName = "cache"
|
|
ReferrerFilterAnnotation = "org.opencontainers.referrers.filtersApplied"
|
|
DynamoDBDriverName = "dynamodb"
|
|
)
|