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

Add Shebang and use docker manifest instead of crane #2405

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Changes from all 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
8 changes: 5 additions & 3 deletions hack/e2e/test-images.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# Copyright 2025 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the 'License');
@@ -68,18 +70,18 @@ imageSuffixes=("a1compat fips-windows-amd64-ltsc2022 fips-windows-amd64-ltsc2019
loudecho "Ensuring all images are present"

for suffix in ${imageSuffixes[@]}; do
if [ ! "$(crane digest "${IMAGE}":"${TAG}"-"${suffix}")" ]; then
if [ ! "$(docker manifest inspect "${IMAGE}":"${TAG}"-"${suffix}")" ]; then
loudecho "$suffix image not found"
exit 1
fi
done

loudecho "Ensuring image indexes have all images"
if [ ! "$(crane manifest ${IMAGE}:${TAG} | jq ".manifests.[3].platform")" ]; then
if [ ! "$(docker manifest inspect ${IMAGE}:${TAG} | jq ".manifests[3].platform")" ]; then
loudecho "Error index image is missing images"
exit 1
fi
if [ ! "$(crane manifest ${IMAGE}:${TAG}-fips | jq ".manifests.[3].platform")" ]; then
if [ ! "$(docker manifest inspect ${IMAGE}:${TAG}-fips | jq ".manifests[3].platform")" ]; then
loudecho "Error fips index image is missing images"
exit 1
fi