mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
13 lines
726 B
Go
13 lines
726 B
Go
|
package spec
|
||
|
|
||
|
const (
|
||
|
// MediaTypeLayerEnc is MIME type used for encrypted layers.
|
||
|
MediaTypeLayerEnc = "application/vnd.oci.image.layer.v1.tar+encrypted"
|
||
|
// MediaTypeLayerGzipEnc is MIME type used for encrypted compressed layers.
|
||
|
MediaTypeLayerGzipEnc = "application/vnd.oci.image.layer.v1.tar+gzip+encrypted"
|
||
|
// MediaTypeLayerNonDistributableEnc is MIME type used for non distributable encrypted layers.
|
||
|
MediaTypeLayerNonDistributableEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+encrypted"
|
||
|
// MediaTypeLayerGzipEnc is MIME type used for non distributable encrypted compressed layers.
|
||
|
MediaTypeLayerNonDistributableGzipEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+gzip+encrypted"
|
||
|
)
|