-
Notifications
You must be signed in to change notification settings - Fork 63
/
annotations.go
23 lines (22 loc) · 1.15 KB
/
annotations.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package oci
const (
AnnotationMediaType = "org.unikraft.mediaType"
AnnotationName = "org.unikraft.image.name"
AnnotationVersion = "org.unikraft.image.version"
AnnotationURL = "org.unikraft.image.url"
AnnotationCreated = "org.unikraft.image.created"
AnnotaitonDescription = "org.unikraft.image.description"
AnnotationKernelPath = "org.unikraft.kernel.image"
AnnotationKernelVersion = "org.unikraft.kernel.version"
AnnotationKernelInitrdPath = "org.unikraft.kernel.initrd"
AnnotationKernelKConfig = "org.unikraft.kernel.kconfig."
AnnotationKernelArch = "org.unikraft.kernel.arch"
AnnotationKernelPlat = "org.unikraft.kernel.plat"
AnnotationFilesystemPath = "org.unikraft.filesystem"
AnnotationDiskIndexPathPattern = "org.unikraft.disk-%d"
AnnotationKraftKitVersion = "sh.kraftkit.version"
)