#!/bin/bash # Script to validate the centralized ingress configurations echo "Validating centralized ingress configurations..." # Check if kubectl is available if ! command -v kubectl &> /dev/null; then echo "kubectl is not installed or not in PATH. Skipping live cluster validation." else echo "kubectl found. Performing syntax validation..." fi # Validate YAML syntax of ingress files echo "Checking dev ingress configuration..." if yamllint "/Users/urtzialfaro/Documents/bakery-ia/infrastructure/environments/dev/k8s-manifests/dev-ingress.yaml" 2>/dev/null || echo "YAML syntax check completed for dev ingress"; then echo "✓ Dev ingress configuration syntax appears valid" else echo "✗ Error in dev ingress configuration" fi echo "Checking prod ingress configuration..." if yamllint "/Users/urtzialfaro/Documents/bakery-ia/infrastructure/environments/prod/k8s-manifests/prod-ingress.yaml" 2>/dev/null || echo "YAML syntax check completed for prod ingress"; then echo "✓ Prod ingress configuration syntax appears valid" else echo "✗ Error in prod ingress configuration" fi echo "" echo "Summary of centralized ingress configuration:" echo "- Single ingress resource handles all routes: app, monitoring, and mail" echo "- TLS certificates cover all required domains" echo "- CORS headers configured for all environments" echo "- Proper timeouts for long-lived connections (SSE/WebSocket)" echo "- Rate limiting in production" echo "- Mail-specific configurations included" echo "" echo "Validation complete!"