annotations.go 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Copyright 2016 The Linux Foundation
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package v1
  15. const (
  16. // AnnotationCreated is the annotation key for the date and time on which the image was built (date-time string as defined by RFC 3339).
  17. AnnotationCreated = "org.opencontainers.image.created"
  18. // AnnotationAuthors is the annotation key for the contact details of the people or organization responsible for the image (freeform string).
  19. AnnotationAuthors = "org.opencontainers.image.authors"
  20. // AnnotationURL is the annotation key for the URL to find more information on the image.
  21. AnnotationURL = "org.opencontainers.image.url"
  22. // AnnotationDocumentation is the annotation key for the URL to get documentation on the image.
  23. AnnotationDocumentation = "org.opencontainers.image.documentation"
  24. // AnnotationSource is the annotation key for the URL to get source code for building the image.
  25. AnnotationSource = "org.opencontainers.image.source"
  26. // AnnotationVersion is the annotation key for the version of the packaged software.
  27. // The version MAY match a label or tag in the source code repository.
  28. // The version MAY be Semantic versioning-compatible.
  29. AnnotationVersion = "org.opencontainers.image.version"
  30. // AnnotationRevision is the annotation key for the source control revision identifier for the packaged software.
  31. AnnotationRevision = "org.opencontainers.image.revision"
  32. // AnnotationVendor is the annotation key for the name of the distributing entity, organization or individual.
  33. AnnotationVendor = "org.opencontainers.image.vendor"
  34. // AnnotationLicenses is the annotation key for the license(s) under which contained software is distributed as an SPDX License Expression.
  35. AnnotationLicenses = "org.opencontainers.image.licenses"
  36. // AnnotationRefName is the annotation key for the name of the reference for a target.
  37. // SHOULD only be considered valid when on descriptors on `index.json` within image layout.
  38. AnnotationRefName = "org.opencontainers.image.ref.name"
  39. // AnnotationTitle is the annotation key for the human-readable title of the image.
  40. AnnotationTitle = "org.opencontainers.image.title"
  41. // AnnotationDescription is the annotation key for the human-readable description of the software packaged in the image.
  42. AnnotationDescription = "org.opencontainers.image.description"
  43. )