Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add artifacthub metadata on rechunker step #86

Closed
wants to merge 4 commits into from
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,34 @@ rechunk $image="aurora" $tag="latest" $flavor="main" ghcr="0" pipeline="0":
if [[ -z "$(git status -s)" ]]; then
SHA=$(git rev-parse HEAD)
fi

# Should generate a timestamp like what is defined on the ArtifactHub documentation
# E.G: 2022-02-08T15:38:15Z'
# https://artifacthub.io/docs/topics/repositories/container-images/
# https://linux.die.net/man/1/date
CREATED_DATE="$(date -u +%Y\-%m\-%d\T%H\:%M\:%S\Z)"

LABELS=()
LABELS+=("org.opencontainers.image.created=$CREATED_DATE")
LABELS+=("org.opencontainers.image.description='An interpretation of the Ubuntu spirit built on Fedora technology'")
inffy marked this conversation as resolved.
Show resolved Hide resolved
LABELS+=("org.opencontainers.image.documentation=https://getaurora.dev")
LABELS+=("org.opencontainers.image.source=https://github.com/ublue-os/aurora/blob/main/Containerfile")
LABELS+=("org.opencontainers.image.title=bluefin")
inffy marked this conversation as resolved.
Show resolved Hide resolved
LABELS+=("org.opencontainers.image.url=https://getaurora.dev")
LABELS+=("org.opencontainers.image.vendor=ublue-os")
LABELS+=("org.opencontainers.image.version=$fedora_version")
LABELS+=("io.artifacthub.package.deprecated=false")
LABELS+=("io.artifacthub.package.keywords=bootc,fedora,aurora,ublue,universal-blue")
LABELS+=("io.artifacthub.package.license=Apache-2.0")
LABELS+=("io.artifacthub.package.logo-url=https://avatars.githubusercontent.com/u/120078124?s=200&v=4")
LABELS+=("containers.bootc=1")

FINAL_LABELS="io.artifacthub.package.readme-url=https://raw.githubusercontent.com/ublue-os/aurora/refs/heads/main/README.md"
# Escape labels in a way that sudoif works with it
for label in "${LABELS[@]}"; do
FINAL_LABELS+="$'\n'$label"
done

# Run Rechunker
just sudoif podman run --rm \
--pull=newer \
Expand All @@ -352,7 +380,7 @@ rechunk $image="aurora" $tag="latest" $flavor="main" ghcr="0" pipeline="0":
--env REPO=/var/ostree/repo \
--env PREV_REF=ghcr.io/ublue-os/"${image_name}":"${tag}" \
--env OUT_NAME="$OUT_NAME" \
--env LABELS="org.opencontainers.image.title=${image_name}$'\n''io.artifacthub.package.readme-url=https://raw.githubusercontent.com/ublue-os/aurora/refs/heads/main/README.md'$'\n''io.artifacthub.package.logo-url=https://avatars.githubusercontent.com/u/120078124?s=200&v=4'$'\n'" \
--env "LABELS=$FINAL_LABELS" \
--env "DESCRIPTION='An interpretation of the Ubuntu spirit built on Fedora technology'" \
--env "VERSION=${VERSION}" \
--env VERSION_FN=/workspace/version.txt \
Expand Down