Lab Schedule

View scheduled demos, resource availability, and find open windows for maintenance or new demos.

Reserve Resources

Calendar

Click a reservation to see which resources are locked and for how long. Days with no color are free for maintenance.

April 2026

Sun
Mon
Tue
Wed
Thu
Fri
Sat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

Resource Status

Resources currently in-use or scheduled. If this table is empty, all resources are free.

All resources free

No active or scheduled reservations. Safe for maintenance.

CI/CD Integration

Demo provisioning pipelines should check resource availability before deploying. Add this to your stage-demo.yml workflow:

- name: Check resource availability
  run: |
    RESULT=$(curl -sf "https://lab-paragonmicro.com/api/schedule/check?\
      resources=hpzgxn001,dellr73001-k8s&\
      start=$(date +%Y-%m-%d)&\
      end=$(date -d '+3 days' +%Y-%m-%d)")
    AVAILABLE=$(echo "$RESULT" | jq -r '.available')
    if [ "$AVAILABLE" != "true" ]; then
      echo "::error::Resources are not available"
      echo "$RESULT" | jq '.conflicts'
      exit 1
    fi