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.
2 parents 9c15cde + e90c7b5 commit 42db3eaCopy full SHA for 42db3ea
coreos-meta-translator/trans.py
@@ -144,6 +144,9 @@ def artifact(i):
144
i = input_.get("images", {}).get("live-initramfs", None)
145
if i is not None:
146
arch_dict["media"]["metal"]["artifacts"].setdefault("pxe", {})["initramfs"] = artifact(i)
147
+ i = input_.get("images", {}).get("live-rootfs", None)
148
+ if i is not None:
149
+ arch_dict["media"]["metal"]["artifacts"].setdefault("pxe", {})["rootfs"] = artifact(i)
150
151
# if architectures as a whole or the individual arch is empty just push our changes
152
if out.get('architectures', None) is None or out['architectures'].get(arch, None) is None:
0 commit comments