-
Notifications
You must be signed in to change notification settings - Fork 11
34 lines (32 loc) · 1.04 KB
/
track_catalog_gpu.yaml
File metadata and controls
34 lines (32 loc) · 1.04 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
name: Track GPU operator availability
on:
schedule:
- cron: '30 10 * * 4'
workflow_dispatch:
inputs:
ocp_version:
description: 'OpenShift version to check'
required: false
default: '4.22'
index_name:
description: 'Operator index name'
required: false
default: 'certified-operator-index'
operator_name:
description: 'Operator package name'
required: false
default: 'gpu-operator-certified'
permissions:
issues: write
contents: read
jobs:
call-reusable-workflow:
uses: ./.github/workflows/track_catalog_operator.reusable.yaml
with:
operator_display_name: 'GPU'
index_name: ${{ github.event.inputs.index_name || 'certified-operator-index' }}
ocp_version: ${{ github.event.inputs.ocp_version || '4.22' }}
operator_name: ${{ github.event.inputs.operator_name || 'gpu-operator-certified' }}
secrets:
registry_username: ${{ secrets.REGISTRY_REDHAT_USERNAME }}
registry_password: ${{ secrets.REGISTRY_REDHAT_PASSWORD }}