Some checks failed
API CI / API Lint (push) Successful in 47s
API CI / API Type Check (push) Failing after 47s
API CI / API Test (push) Successful in 1m0s
API CI / API Build (push) Failing after 50s
API CI / Build Docker Image (push) Has been skipped
Build Crossplane Provider / build (push) Failing after 5m51s
CD Pipeline / Deploy to Staging (push) Failing after 29s
CI Pipeline / Lint and Type Check (push) Failing after 36s
CI Pipeline / Build (push) Has been skipped
CI Pipeline / Test Backend (push) Failing after 1m33s
CI Pipeline / Test Frontend (push) Failing after 30s
CI Pipeline / Security Scan (push) Failing after 1m16s
Crossplane Provider CI / Go Test (push) Failing after 3m23s
Crossplane Provider CI / Go Lint (push) Failing after 7m27s
Crossplane Provider CI / Go Build (push) Failing after 3m27s
Deploy to Staging / Deploy to Staging (push) Failing after 30s
Portal CI / Portal Lint (push) Failing after 21s
Portal CI / Portal Type Check (push) Failing after 21s
Portal CI / Portal Test (push) Failing after 21s
Portal CI / Portal Build (push) Failing after 22s
Test Suite / frontend-tests (push) Failing after 30s
Test Suite / api-tests (push) Failing after 49s
Test Suite / blockchain-tests (push) Failing after 30s
Type Check / type-check (map[directory:. name:root]) (push) Failing after 23s
Type Check / type-check (map[directory:api name:api]) (push) Failing after 21s
Type Check / type-check (map[directory:portal name:portal]) (push) Failing after 19s
Validate Configuration Files / validate (push) Failing after 1m52s
CD Pipeline / Deploy to Production (push) Has been skipped
Co-authored-by: Cursor <cursoragent@cursor.com>
49 lines
1.5 KiB
Bash
Executable File
49 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# Script to import the fixed Crossplane provider image into containerd
|
|
|
|
set -e
|
|
|
|
IMAGE_TAR="/tmp/crossplane-provider-proxmox-fixed-v2.tar"
|
|
IMAGE_NAME="crossplane-provider-proxmox:fixed-v2"
|
|
|
|
echo "=========================================="
|
|
echo "Importing Crossplane Provider Image"
|
|
echo "=========================================="
|
|
echo ""
|
|
|
|
if [ ! -f "$IMAGE_TAR" ]; then
|
|
echo "❌ Error: Image tar file not found: $IMAGE_TAR"
|
|
echo " Please ensure the image was built and saved."
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Image tar file found: $IMAGE_TAR"
|
|
echo ""
|
|
|
|
echo "Importing image to containerd (k8s.io namespace)..."
|
|
if sudo ctr -n k8s.io images import "$IMAGE_TAR"; then
|
|
echo "✅ Image imported successfully"
|
|
else
|
|
echo "❌ Failed to import image"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Verifying image in containerd..."
|
|
sudo ctr -n k8s.io images ls | grep crossplane-provider-proxmox || echo "⚠️ Image not found with expected name"
|
|
|
|
echo ""
|
|
echo "=========================================="
|
|
echo "Next Steps:"
|
|
echo "=========================================="
|
|
echo "1. Update deployment:"
|
|
echo " kubectl set image deployment/crossplane-provider-proxmox provider=$IMAGE_NAME -n crossplane-system"
|
|
echo ""
|
|
echo "2. Restart provider pod:"
|
|
echo " kubectl delete pod -n crossplane-system -l app=crossplane-provider-proxmox"
|
|
echo ""
|
|
echo "3. Verify new code is running:"
|
|
echo " kubectl logs -n crossplane-system -l app=crossplane-provider-proxmox --tail=50"
|
|
echo ""
|
|
|