pipeline #7
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 1m57s Details

This commit is contained in:
Julian Vollmer 2026-01-26 17:22:49 +01:00
parent cc65816ef9
commit a4df93c326
1 changed files with 26 additions and 0 deletions

View File

@ -134,6 +134,19 @@ jobs:
echo "📁 kubeconfig created at ~/.kube/config" echo "📁 kubeconfig created at ~/.kube/config"
chmod 600 ~/.kube/config chmod 600 ~/.kube/config
# Fix TLS issues by adding insecure-skip-tls-verify to all clusters
echo "🔧 Fixing TLS verification for self-signed certificates..."
# Get all cluster names and add insecure-skip-tls-verify
kubectl config get-clusters --no-headers | while read cluster; do
if [ "$cluster" != "NAME" ]; then
echo "Setting insecure-skip-tls-verify for cluster: $cluster"
kubectl config set-cluster "$cluster" --insecure-skip-tls-verify=true
fi
done
echo "✅ TLS configuration completed"
- name: Test kubectl connection - name: Test kubectl connection
run: | run: |
@ -342,6 +355,19 @@ jobs:
echo "📁 kubeconfig created at ~/.kube/config" echo "📁 kubeconfig created at ~/.kube/config"
chmod 600 ~/.kube/config chmod 600 ~/.kube/config
# Fix TLS issues by adding insecure-skip-tls-verify to all clusters
echo "🔧 Fixing TLS verification for self-signed certificates..."
# Get all cluster names and add insecure-skip-tls-verify
kubectl config get-clusters --no-headers | while read cluster; do
if [ "$cluster" != "NAME" ]; then
echo "Setting insecure-skip-tls-verify for cluster: $cluster"
kubectl config set-cluster "$cluster" --insecure-skip-tls-verify=true
fi
done
echo "✅ TLS configuration completed"
- name: Test kubectl connection - name: Test kubectl connection
run: | run: |