Skip to content

Commit

Permalink
Revert "create_disk: add version field to aleph file"
Browse files Browse the repository at this point in the history
This reverts commit c2d37f4.

We found an issue with this and need to revert it for now:
coreos/bootupd#585 (comment)
  • Loading branch information
dustymabe committed Dec 18, 2023
1 parent 04cecdb commit 7d7f8e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion mantle/cmd/kola/testiso.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ StandardError=kmsg+console
ExecStart=/bin/sh -c "journalctl -t coreos-installer-service | /usr/bin/awk '/[Dd]ownload/ {exit 1}'"
ExecStart=/bin/sh -c "/usr/bin/udevadm settle"
ExecStart=/bin/sh -c "/usr/bin/mount /dev/disk/by-label/root /mnt"
ExecStart=/bin/sh -c "/usr/bin/jq -er '.[\"version\"] == \"%s\"' /mnt/.coreos-aleph-version.json"
ExecStart=/bin/sh -c "/usr/bin/jq -er '.[\"build\"] == \"%s\"' /mnt/.coreos-aleph-version.json"
ExecStart=/bin/sh -c "/usr/bin/jq -er '.[\"ostree-commit\"] == \"%s\"' /mnt/.coreos-aleph-version.json"
[Install]
RequiredBy=coreos-installer.target
Expand Down
6 changes: 0 additions & 6 deletions src/create_disk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -386,11 +386,6 @@ test -d "${deploy_root}" || (echo "failed to find $deploy_root"; exit 1)
#
# build: The coreos-assembler build ID; today we support
# having the same ostree commit in different image builds.
# version: same value as build for now, even though version is
# not exactly the same as build ID, this will ease
# transition to using osbuild where it's defined
# appropriately and build: isn't there:
# https://github.com/osbuild/osbuild/pull/1475
# ref: The ostree ref used; useful for cross-checking.
# ostree-commit: Similar to `ref`; one can derive this from looking
# at the coreos-assembler builds, but it's very
Expand All @@ -400,7 +395,6 @@ test -d "${deploy_root}" || (echo "failed to find $deploy_root"; exit 1)
cat > $rootfs/.coreos-aleph-version.json << EOF
{
"build": "${buildid}",
"version": "${buildid}",
"ref": "${ref}",
"ostree-commit": "${commit}",
"imgid": "${imgid}"
Expand Down

0 comments on commit 7d7f8e7

Please sign in to comment.