Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1dd71de97f | ||
|
|
fa9938df8e | ||
|
|
a700ac065b | ||
|
|
e0622449cc | ||
|
|
52c36e587b |
+70
-26
@@ -47,36 +47,80 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
docker build --no-cache \
|
docker build --no-cache \
|
||||||
-t "${IMAGE}:${{ steps.sha.outputs.short_sha }}" \
|
-t "${IMAGE}:${{ steps.sha.outputs.short_sha }}" \
|
||||||
-t "${IMAGE}:latest" \
|
|
||||||
-f Dockerfile .
|
-f Dockerfile .
|
||||||
|
echo "Built image: ${IMAGE}:${{ steps.sha.outputs.short_sha }}"
|
||||||
|
|
||||||
- name: Push Docker image
|
- name: Push test image (SHA tag only, not latest yet)
|
||||||
run: |
|
run: |
|
||||||
docker push "${IMAGE}:${{ steps.sha.outputs.short_sha }}"
|
docker push "${IMAGE}:${{ steps.sha.outputs.short_sha }}"
|
||||||
|
echo "✓ Pushed test image: ${IMAGE}:${{ steps.sha.outputs.short_sha }}"
|
||||||
|
|
||||||
|
- name: Detect in-cluster Kubernetes authentication
|
||||||
|
run: |
|
||||||
|
# When running inside K8s cluster, kubectl auto-detects service account
|
||||||
|
# Mounted at: /var/run/secrets/kubernetes.io/serviceaccount/
|
||||||
|
if [ -f /var/run/secrets/kubernetes.io/serviceaccount/token ]; then
|
||||||
|
echo "✓ In-cluster authentication detected"
|
||||||
|
export KUBECONFIG=/dev/null # kubectl will auto-use in-cluster auth
|
||||||
|
else
|
||||||
|
echo "⚠ Not running in-cluster, kubectl may fail"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Run integration tests via Kubernetes Job
|
||||||
|
run: |
|
||||||
|
echo "Running integration tests via Kubernetes Job..."
|
||||||
|
echo "Test image: ${IMAGE}:${{ steps.sha.outputs.short_sha }}"
|
||||||
|
|
||||||
|
# Apply job template from repo (uses in-cluster auth automatically)
|
||||||
|
kubectl apply -f k8s/integration-test-job.yaml
|
||||||
|
|
||||||
|
# Update job to use new image
|
||||||
|
kubectl set image job/api-gateway-integration-test \
|
||||||
|
integration-tester="${IMAGE}:${{ steps.sha.outputs.short_sha }}" \
|
||||||
|
-n api --record
|
||||||
|
|
||||||
|
# Wait for job to complete (max 10 minutes)
|
||||||
|
echo "Waiting for job to complete (this may take a few minutes)..."
|
||||||
|
kubectl wait --for=condition=complete job/api-gateway-integration-test \
|
||||||
|
-n api --timeout=10m 2>/dev/null || true
|
||||||
|
|
||||||
|
# Stream logs
|
||||||
|
echo ""
|
||||||
|
echo "=== Job Logs ==="
|
||||||
|
kubectl logs -n api job/api-gateway-integration-test --all-containers=true --timestamps=true || echo "No logs available"
|
||||||
|
echo "================"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Check if job succeeded
|
||||||
|
SUCCEEDED=$(kubectl get job api-gateway-integration-test -n api -o jsonpath='{.status.succeeded}' 2>/dev/null || echo "0")
|
||||||
|
FAILED=$(kubectl get job api-gateway-integration-test -n api -o jsonpath='{.status.failed}' 2>/dev/null || echo "0")
|
||||||
|
|
||||||
|
echo "Job Status: Succeeded=$SUCCEEDED, Failed=$FAILED"
|
||||||
|
|
||||||
|
if [ "$SUCCEEDED" = "1" ]; then
|
||||||
|
echo "✓ Integration tests PASSED"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
echo "✗ Integration tests FAILED"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
continue-on-error: false
|
||||||
|
|
||||||
|
- name: Promote image to latest (only if tests passed)
|
||||||
|
if: success()
|
||||||
|
run: |
|
||||||
|
docker pull "${IMAGE}:${{ steps.sha.outputs.short_sha }}"
|
||||||
|
docker tag "${IMAGE}:${{ steps.sha.outputs.short_sha }}" "${IMAGE}:latest"
|
||||||
docker push "${IMAGE}:latest"
|
docker push "${IMAGE}:latest"
|
||||||
echo "✓ Pushed: ${IMAGE}:${{ steps.sha.outputs.short_sha }}"
|
echo "✓ Promoted ${IMAGE}:${{ steps.sha.outputs.short_sha }} to latest"
|
||||||
|
|
||||||
- name: Prune unused images
|
- name: Cleanup integration test job
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
echo "Cleaning up test job..."
|
||||||
|
kubectl delete job api-gateway-integration-test -n api --ignore-not-found=true
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Cleanup docker
|
||||||
|
if: always()
|
||||||
run: docker image prune -a --force 2>&1 | tail -3 || true
|
run: docker image prune -a --force 2>&1 | tail -3 || true
|
||||||
|
|
||||||
- name: Setup kubeconfig
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/.kube
|
|
||||||
echo "${KUBECONFIG_B64}" | base64 -d > ~/.kube/config
|
|
||||||
env:
|
|
||||||
KUBECONFIG_B64: ${{ secrets.KUBECONFIG_B64 }}
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Install kubectl
|
|
||||||
run: |
|
|
||||||
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
|
|
||||||
chmod +x kubectl
|
|
||||||
sudo mv kubectl /usr/local/bin/
|
|
||||||
|
|
||||||
- name: Run integration tests against cluster
|
|
||||||
run: |
|
|
||||||
echo "Running integration tests against production cluster..."
|
|
||||||
go test -v -tags=integration ./internal/integration/... || true
|
|
||||||
env:
|
|
||||||
GATEWAY_URL: http://api-gateway.api.svc.cluster.local:8080
|
|
||||||
continue-on-error: true
|
|
||||||
|
|||||||
@@ -247,7 +247,7 @@ func TestIntegrationIAMService(t *testing.T) {
|
|||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
|
||||||
body, _ := io.ReadAll(resp.Body)
|
_, _ = io.ReadAll(resp.Body)
|
||||||
t.Logf("IAM list users response: %d", resp.StatusCode)
|
t.Logf("IAM list users response: %d", resp.StatusCode)
|
||||||
|
|
||||||
// IAM (Authentik) should respond - 200, 404, or auth error all prove routing works
|
// IAM (Authentik) should respond - 200, 404, or auth error all prove routing works
|
||||||
|
|||||||
@@ -5,32 +5,35 @@ metadata:
|
|||||||
namespace: api
|
namespace: api
|
||||||
spec:
|
spec:
|
||||||
template:
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: api-gateway
|
||||||
|
managed-by: test
|
||||||
|
role: integration-test
|
||||||
spec:
|
spec:
|
||||||
serviceAccountName: api-gateway
|
serviceAccountName: api-gateway
|
||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
containers:
|
containers:
|
||||||
- name: integration-tester
|
- name: integration-tester
|
||||||
image: golang:1.26-bookworm
|
image: forgejo.riotpiao.com/rock/api-gateway:latest
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: Always
|
||||||
workingDir: /workspace
|
workingDir: /app
|
||||||
command:
|
command:
|
||||||
- /bin/bash
|
- /bin/sh
|
||||||
- -c
|
- -c
|
||||||
- |
|
- |
|
||||||
set -e
|
set -e
|
||||||
echo "Starting integration tests..."
|
echo "Starting integration tests..."
|
||||||
|
echo "Gateway URL: http://api-gateway:8080"
|
||||||
|
|
||||||
# Clone the repo
|
# Wait for gateway service to be ready
|
||||||
git clone https://forgejo.riotpiao.com/riotpiao-poimen/homelab-frontend.git .
|
|
||||||
|
|
||||||
# Wait for gateway to be ready
|
|
||||||
echo "Waiting for gateway service to be ready..."
|
echo "Waiting for gateway service to be ready..."
|
||||||
for i in {1..30}; do
|
for i in $(seq 1 30); do
|
||||||
if curl -s http://api-gateway:8080/healthz | grep -q "alive"; then
|
if curl -s http://api-gateway:8080/healthz > /dev/null 2>&1; then
|
||||||
echo "✓ Gateway is ready"
|
echo "✓ Gateway is ready"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
echo "Attempting to reach gateway ($i/30)..."
|
echo "Waiting for gateway... ($i/30)"
|
||||||
sleep 2
|
sleep 2
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -42,6 +45,8 @@ spec:
|
|||||||
env:
|
env:
|
||||||
- name: GATEWAY_URL
|
- name: GATEWAY_URL
|
||||||
value: "http://api-gateway:8080"
|
value: "http://api-gateway:8080"
|
||||||
|
- name: CI
|
||||||
|
value: "true"
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 250m
|
cpu: 250m
|
||||||
@@ -67,4 +72,6 @@ spec:
|
|||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
- name: home
|
- name: home
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
|
imagePullSecrets:
|
||||||
|
- name: regcred
|
||||||
backoffLimit: 1
|
backoffLimit: 1
|
||||||
|
|||||||
Reference in New Issue
Block a user