-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathadditional_demo_notebook_tests.yaml
More file actions
64 lines (57 loc) · 2.82 KB
/
additional_demo_notebook_tests.yaml
File metadata and controls
64 lines (57 loc) · 2.82 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Additional demo notebooks tests
on:
pull_request:
branches: [ main ]
types: [ labeled, synchronize ]
workflow_dispatch:
concurrency:
group: ${{ github.head_ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
KUEUE_VERSION: v0.13.4
KUBERAY_VERSION: v1.4.2
jobs:
verify-local_interactive:
if: ${{ contains(github.event.pull_request.labels.*.name, 'test-additional-notebooks') }}
runs-on: ubuntu-latest
steps:
- name: Skip notification
run: |
echo "::notice::SKIPPED: verify-local_interactive test is currently disabled."
echo ""
echo "=============================================================================="
echo " TEST SKIPPED: local_interactive.ipynb"
echo "=============================================================================="
echo ""
echo " Reason: This notebook requires mTLS (mutual TLS) certificates for"
echo " interactive Ray connections via ray.init(address=cluster.local_client_url())."
echo ""
echo " The mTLS CA secret was previously created by codeflare-operator, which has"
echo " been removed from the RHOAI 3.x stack. While opendatahub-io/kuberay includes"
echo " some mTLS features, they require OpenShift-specific components that are not"
echo " available in KinD."
echo ""
echo " This test should be run on a full OpenShift cluster with RHOAI installed."
echo "=============================================================================="
verify-ray_job_client:
if: ${{ contains(github.event.pull_request.labels.*.name, 'test-additional-notebooks') }}
runs-on: ubuntu-latest
steps:
- name: Skip notification
run: |
echo "::notice::SKIPPED: verify-ray_job_client test is currently disabled."
echo ""
echo "=============================================================================="
echo " TEST SKIPPED: ray_job_client.ipynb"
echo "=============================================================================="
echo ""
echo " Reason: This notebook requires mTLS (mutual TLS) certificates for"
echo " interactive Ray connections via the Ray Job Client."
echo ""
echo " The mTLS CA secret was previously created by codeflare-operator, which has"
echo " been removed from the RHOAI 3.x stack. While opendatahub-io/kuberay includes"
echo " some mTLS features, they require OpenShift-specific components that are not"
echo " available in KinD."
echo ""
echo " This test should be run on a full OpenShift cluster with RHOAI installed."
echo "=============================================================================="