pipeline #10
Build, Push and Deploy Florale Emotion Website / feature-branch (push) Has been skipped Details
Build, Push and Deploy Florale Emotion Website / production-branch (push) Failing after 2m54s Details

This commit is contained in:
Julian Vollmer 2026-01-26 17:41:09 +01:00
parent 0611ae0119
commit 72d93baa19
1 changed files with 20 additions and 8 deletions

View File

@ -147,11 +147,17 @@ jobs:
echo "🔍 Debugging kubeconfig structure..." echo "🔍 Debugging kubeconfig structure..."
echo "File size: $(wc -c < ~/.kube/config) bytes" echo "File size: $(wc -c < ~/.kube/config) bytes"
echo "Current context:" echo "First few lines of kubeconfig (structure check):"
kubectl config current-context || echo "❌ No current context set" head -20 ~/.kube/config | grep -E "(apiVersion|kind|clusters|contexts|users|current-context)" || echo "No standard kubeconfig structure found"
echo "Available contexts:" echo "Checking for current-context:"
kubectl config get-contexts || echo "❌ No contexts available" grep "current-context:" ~/.kube/config || echo "❌ No current-context found"
echo "Checking for clusters:"
grep -A 2 "clusters:" ~/.kube/config || echo "❌ No clusters found"
echo "Checking for users:"
grep -A 2 "users:" ~/.kube/config || echo "❌ No users found"
# Fix TLS issues by adding insecure-skip-tls-verify to all clusters # Fix TLS issues by adding insecure-skip-tls-verify to all clusters
echo "🔧 Fixing TLS verification for self-signed certificates..." echo "🔧 Fixing TLS verification for self-signed certificates..."
@ -386,11 +392,17 @@ jobs:
echo "🔍 Debugging kubeconfig structure..." echo "🔍 Debugging kubeconfig structure..."
echo "File size: $(wc -c < ~/.kube/config) bytes" echo "File size: $(wc -c < ~/.kube/config) bytes"
echo "Current context:" echo "First few lines of kubeconfig (structure check):"
kubectl config current-context || echo "❌ No current context set" head -20 ~/.kube/config | grep -E "(apiVersion|kind|clusters|contexts|users|current-context)" || echo "No standard kubeconfig structure found"
echo "Available contexts:" echo "Checking for current-context:"
kubectl config get-contexts || echo "❌ No contexts available" grep "current-context:" ~/.kube/config || echo "❌ No current-context found"
echo "Checking for clusters:"
grep -A 2 "clusters:" ~/.kube/config || echo "❌ No clusters found"
echo "Checking for users:"
grep -A 2 "users:" ~/.kube/config || echo "❌ No users found"
# Fix TLS issues by adding insecure-skip-tls-verify to all clusters # Fix TLS issues by adding insecure-skip-tls-verify to all clusters
echo "🔧 Fixing TLS verification for self-signed certificates..." echo "🔧 Fixing TLS verification for self-signed certificates..."