This commit is contained in:
Alexis Bruneteau 2025-05-31 16:09:37 +02:00
parent 0643d4fb08
commit 6f76ba2f6e

View File

@ -54,6 +54,13 @@ jobs:
run: |
cat ~/.kube/config
- name: Validate kubeconfig
run: |
if ! kubectl version --client && kubectl cluster-info; then
echo "❌ Failed to connect to cluster"
exit 1
fi
- name: Create ConfigMap for app files
run: |
kubectl create configmap hosting-frontend-files \