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

ingress-controller/ci: check docker base images #871

Merged
merged 4 commits into from
Jan 16, 2024
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
88 changes: 88 additions & 0 deletions scripts/check-docker-images
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
#!/usr/bin/bash
set -euo pipefail

inspect-manifest() {
local _image
_image="${1?"image is required"}"

local _temp_dir
_temp_dir="${TMPDIR-/tmp}"
local _image_hash
_image_hash="$(echo -n "$_image" | shasum | cut -f1 -d' ')"
local _temp_file
_temp_file="${_temp_dir}/check-docker-image-${_image_hash}.json"

if [ ! -f "$_temp_file" ]; then
docker buildx imagetools inspect \
--format='{{json .}}' \
"$_image" >"$_temp_file"
fi

cat "$_temp_file"
}

check-image() {
local _image
_image="${1?"image is required"}"

echo "checking image=$_image"

local _manifest
_manifest="$(inspect-manifest "$_image")"

local _has_arm64
_has_arm64="$(echo "$_manifest" | jq '
.manifest.manifests
| map(select(.platform.architecture == "arm64" and .platform.os == "linux"))
| length >= 1
')"

if [[ "$_has_arm64" != "true" ]]; then
echo "- missing ARM64 in $_manifest"
exit 1
fi

local _has_amd64
_has_amd64="$(echo "$_manifest" | jq '
.manifest.manifests
| map(select(.platform.architecture == "amd64" and .platform.os == "linux"))
| length >= 1
')"

if [[ "$_has_amd64" != "true" ]]; then
echo "- missing AMD64 in $_manifest"
exit 1
fi
}

check-dockerfile() {
local _file
_file="${1?"file is required"}"

echo "checking dockerfile=$_file"

while IFS= read -r _image; do
check-image "$_image"
done < <(sed -n -r -e 's/^FROM ([^:]*)(:[^@]*)(@sha256[^ ]*).*$/\1\2\3/p' "$_file")
}

check-directory() {
local _directory
_directory="${1?"directory is required"}"

echo "checking directory=$_directory"

local _file
while IFS= read -r -d '' _file; do
check-dockerfile "$_file"
done < <(find "$_directory" -name "*Dockerfile*" -print0)
}

main() {
local _project_root
_project_root="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)/.."

check-directory "$_project_root"
}

main
Loading