Improve kubernetes for prod

This commit is contained in:
Urtzi Alfaro
2025-11-06 11:04:50 +01:00
parent 8001c42e75
commit 3007bde05b
59 changed files with 4629 additions and 1739 deletions

View File

@@ -25,14 +25,18 @@ spec:
- |
echo "Waiting 30 seconds for orders-migration to complete..."
sleep 30
- name: wait-for-customers-seed
image: busybox:1.36
- name: wait-for-orders-service
image: curlimages/curl:latest
command:
- sh
- -c
- |
echo "Waiting 20 seconds for demo-seed-customers to complete..."
sleep 20
echo "Waiting for orders-service to be ready..."
until curl -f http://orders-service.bakery-ia.svc.cluster.local:8000/health/ready > /dev/null 2>&1; do
echo "orders-service not ready yet, waiting..."
sleep 5
done
echo "orders-service is ready!"
containers:
- name: seed-orders
image: bakery/orders-service:latest