37af076456
Co-authored-by: hugh-hackman[bot] <266376744+hugh-hackman[bot]@users.noreply.github.com>
156 lines
5.5 KiB
YAML
156 lines
5.5 KiB
YAML
name: E2E Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
HEADLAMP_NAMESPACE: kube-system
|
|
HEADLAMP_DEPLOY: headlamp
|
|
|
|
jobs:
|
|
e2e:
|
|
runs-on: local-ubuntu-latest
|
|
timeout-minutes: 15
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build plugin
|
|
run: npm run build
|
|
|
|
- name: Setup kubectl
|
|
uses: azure/setup-kubectl@v4
|
|
|
|
- name: Ensure PVC exists
|
|
run: kubectl apply -f deployment/headlamp-plugins-pvc.yaml
|
|
|
|
- name: Patch Headlamp deployment with shared volume mount
|
|
run: |
|
|
NS="$HEADLAMP_NAMESPACE"
|
|
DEPLOY="$HEADLAMP_DEPLOY"
|
|
|
|
# Check if the plugins volume and mount already exist (by name or mountPath)
|
|
DEPLOY_JSON=$(kubectl get deploy "$DEPLOY" -n "$NS" -o json)
|
|
HAS_VOL=$(echo "$DEPLOY_JSON" | \
|
|
python3 -c "import sys,json; d=json.load(sys.stdin); vols=d['spec']['template']['spec'].get('volumes',[]); print('yes' if any(v.get('persistentVolumeClaim',{}).get('claimName')=='headlamp-plugins' or v.get('name')=='plugins' for v in vols) else '')")
|
|
HAS_MOUNT=$(echo "$DEPLOY_JSON" | \
|
|
python3 -c "import sys,json; d=json.load(sys.stdin); mounts=d['spec']['template']['spec']['containers'][0].get('volumeMounts',[]); print('yes' if any(m.get('mountPath')=='/headlamp/plugins' or m.get('name')=='plugins' for m in mounts) else '')")
|
|
|
|
NEEDS_PATCH=false
|
|
|
|
if [ -z "$HAS_VOL" ]; then
|
|
echo "Adding plugins PVC volume..."
|
|
kubectl patch deploy "$DEPLOY" -n "$NS" --type=json -p '[
|
|
{"op":"add","path":"/spec/template/spec/volumes/-","value":{
|
|
"name":"plugins",
|
|
"persistentVolumeClaim":{"claimName":"headlamp-plugins"}
|
|
}}
|
|
]'
|
|
NEEDS_PATCH=true
|
|
else
|
|
echo "Plugins volume already present, skipping."
|
|
fi
|
|
|
|
if [ -z "$HAS_MOUNT" ]; then
|
|
echo "Adding plugins volume mount..."
|
|
kubectl patch deploy "$DEPLOY" -n "$NS" --type=json -p '[
|
|
{"op":"add","path":"/spec/template/spec/containers/0/volumeMounts/-","value":{
|
|
"name":"plugins",
|
|
"mountPath":"/headlamp/plugins",
|
|
"readOnly":true
|
|
}}
|
|
]'
|
|
NEEDS_PATCH=true
|
|
else
|
|
echo "Plugins volume mount already present, skipping."
|
|
fi
|
|
|
|
# Set the plugins directory via env var
|
|
kubectl set env deploy/"$DEPLOY" -n "$NS" \
|
|
HEADLAMP_CONFIG_PLUGIN_DIR=/headlamp/plugins
|
|
|
|
# Wait for rollout
|
|
kubectl rollout status deploy/"$DEPLOY" -n "$NS" --timeout=120s
|
|
|
|
- name: Deploy plugin via shared volume
|
|
run: scripts/deploy-plugin-via-volume.sh
|
|
|
|
- name: Preflight — verify Headlamp and plugin availability
|
|
env:
|
|
HEADLAMP_URL: ${{ secrets.HEADLAMP_URL || 'http://headlamp.kube-system.svc.cluster.local' }}
|
|
run: |
|
|
PLUGIN_NAME=$(node -p "require('./package.json').name")
|
|
EXPECTED=$(node -p "require('./package.json').version")
|
|
echo "Expecting: $PLUGIN_NAME@$EXPECTED"
|
|
|
|
# Wait for Headlamp to be reachable
|
|
for i in $(seq 1 30); do
|
|
HTTP_CODE=$(curl -s -o /dev/null -w '%{http_code}' --connect-timeout 5 "$HEADLAMP_URL" || true)
|
|
if [ "$HTTP_CODE" != "000" ]; then
|
|
echo "Headlamp responded HTTP $HTTP_CODE"
|
|
break
|
|
fi
|
|
echo "Waiting for Headlamp... ($i/30)"
|
|
sleep 2
|
|
done
|
|
|
|
if [ "$HTTP_CODE" = "000" ]; then
|
|
echo "::error::Cannot reach Headlamp at $HEADLAMP_URL after 60s"
|
|
exit 1
|
|
fi
|
|
|
|
# Verify plugin is visible
|
|
PLUGIN_JSON=$(curl -sf --connect-timeout 10 "$HEADLAMP_URL/plugins" 2>/dev/null || echo "[]")
|
|
node -e "
|
|
const plugins = JSON.parse(process.argv[1]);
|
|
console.log('Installed plugins:');
|
|
for (const p of plugins) console.log(' ' + p.name + '@' + (p.version||'unknown'));
|
|
const ours = plugins.find(p => p.name === '$PLUGIN_NAME' || p.name === 'polaris' || p.name.includes('polaris'));
|
|
if (!ours) {
|
|
console.log('::warning::Plugin $PLUGIN_NAME not yet visible — Headlamp may need a restart');
|
|
} else {
|
|
console.log('Found plugin: ' + ours.name + ' at path ' + ours.path);
|
|
}
|
|
" "$PLUGIN_JSON"
|
|
|
|
- name: Install Playwright browsers
|
|
run: npx playwright install --with-deps chromium
|
|
|
|
- name: Run E2E tests
|
|
run: npm run e2e
|
|
env:
|
|
HEADLAMP_URL: ${{ secrets.HEADLAMP_URL || 'http://headlamp.kube-system.svc.cluster.local' }}
|
|
HEADLAMP_TOKEN: ${{ secrets.HEADLAMP_TOKEN }}
|
|
AUTHENTIK_USERNAME: ${{ secrets.AUTHENTIK_USERNAME }}
|
|
AUTHENTIK_PASSWORD: ${{ secrets.AUTHENTIK_PASSWORD }}
|
|
|
|
- name: Upload Playwright report
|
|
uses: actions/upload-artifact@v4
|
|
if: failure()
|
|
with:
|
|
name: playwright-report
|
|
path: playwright-report/
|
|
retention-days: 7
|
|
|
|
- name: Upload test results
|
|
uses: actions/upload-artifact@v4
|
|
if: failure()
|
|
with:
|
|
name: test-results
|
|
path: test-results/
|
|
retention-days: 7
|