mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
18235ca254
* fix(oras)!: remove ORAS artifact references support ORAS artifacts/references predated OCI dist-spec 1.1.0 which now has the same functionality and likely to see wider adoption. Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> * test: update to released official images So that they are unlikely to be deleted. *-rc images may be cleaned up over time. Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> --------- Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
9 lines
189 B
Go
9 lines
189 B
Go
package constants
|
|
|
|
// references type.
|
|
const (
|
|
Cosign = "CosignSignature"
|
|
OCI = "OCIReference"
|
|
Tag = "TagReference"
|
|
SyncBlobUploadDir = ".sync"
|
|
)
|