Add new infra architecture 11

This commit is contained in:
Urtzi Alfaro
2026-01-20 22:05:10 +01:00
parent 0217ad83be
commit 2512de4173
42 changed files with 1056 additions and 874 deletions

17
load-images-to-kind.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Load images into Kind cluster
echo "Loading images into Kind cluster..."
# Get the list of images from the local registry
IMAGES=$(docker images --format "table {{.Repository}}:{{.Tag}}" | grep localhost:5000 | grep -v "<none>" | tail -n +2)
for image in $IMAGES; do
echo "Loading image: $image"
kind load docker-image "$image" --name bakery-ia-local
if [ $? -ne 0 ]; then
echo "Failed to load image: $image"
fi
done
echo "Done loading images to Kind cluster"