Bug 2436476

Summary: Changes/ContainerImagesLabels
Product: [Fedora] Fedora Reporter: Allison King <alking>
Component: Changes TrackingAssignee: Jan Pazdziora <adelton>
Status: ON_QA --- QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: adelton, alking
Target Milestone: ---Flags: fedora-admin-xmlrpc: mirror+
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: ---
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 2387673    

Description Allison King 2026-02-03 19:44:15 UTC
This is a tracking bug for Change: Changes/ContainerImagesLabels
For more details, see: https://fedoraproject.org/wiki/Changes/ContainerImagesLabels

The `org.opencontainers.image.name` and `org.opencontainers.image.license` labels in Fedora container images get changed to `org.opencontainers.image.title` and `org.opencontainers.image.licenses` to more closely align with [https://specs.opencontainers.org/image-spec/annotations/ The OpenContainers Annotations Spec].

If you encounter a bug related to this Change, please do not comment here. Instead create a new bug and set it to block this bug.

Comment 1 Jan Pazdziora 2026-02-03 20:59:55 UTC
The change was implemented via https://pagure.io/fedora-kiwi-descriptions/pull-request/251 for Fedora 44, https://pagure.io/fedora-kiwi-descriptions/pull-request/258 for Fedora 43, and https://pagure.io/fedora-kiwi-descriptions/pull-request/259 for Fedora 42.

It is now live:

$ skopeo inspect --config docker://registry.fedoraproject.org/fedora:44 | jq .config.Labels
{
  "io.buildah.version": "1.42.2",
  "org.opencontainers.image.licenses": "MIT",
  "org.opencontainers.image.title": "fedora",
  "org.opencontainers.image.url": "https://fedoraproject.org/",
  "org.opencontainers.image.vendor": "Fedora Project",
  "org.opencontainers.image.version": "rawhide"
}
$ skopeo inspect --config docker://registry.fedoraproject.org/fedora:43 | jq .config.Labels
{
  "io.buildah.version": "1.42.2",
  "license": "MIT",
  "name": "fedora",
  "org.opencontainers.image.license": "MIT",
  "org.opencontainers.image.licenses": "MIT",
  "org.opencontainers.image.name": "fedora",
  "org.opencontainers.image.title": "fedora",
  "org.opencontainers.image.url": "https://fedoraproject.org/",
  "org.opencontainers.image.vendor": "Fedora Project",
  "org.opencontainers.image.version": "43",
  "vendor": "Fedora Project",
  "version": "43"
}
$ skopeo inspect --config docker://registry.fedoraproject.org/fedora:42 | jq .config.Labels
{
  "io.buildah.version": "1.42.2",
  "license": "MIT",
  "name": "fedora",
  "org.opencontainers.image.license": "MIT",
  "org.opencontainers.image.licenses": "MIT",
  "org.opencontainers.image.name": "fedora",
  "org.opencontainers.image.title": "fedora",
  "org.opencontainers.image.url": "https://fedoraproject.org/",
  "org.opencontainers.image.vendor": "Fedora Project",
  "org.opencontainers.image.version": "42",
  "vendor": "Fedora Project",
  "version": "42"
}