We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a00cb commit a46bac2Copy full SHA for a46bac2
src/python_gardenlinux_lib/oras/registry.py
@@ -562,6 +562,14 @@ def push_image_manifest(
562
manifest_image["annotations"]["cname"] = cname
563
manifest_image["annotations"]["architecture"] = architecture
564
manifest_image["annotations"]["feature_set"] = feature_set
565
+ description = (
566
+ f"Garden Linux: {cname} "
567
+ f"Architecture: {architecture} "
568
+ f"Features: {feature_set}"
569
+ )
570
+ manifest_image["annotations"][
571
+ "org.opencontainers.image.description"
572
+ ] = description
573
attach_state(manifest_image["annotations"], "")
574
575
config_annotations = {"cname": cname, "architecture": architecture}
0 commit comments