Skip to content

Commit 9573293

Browse files
committed
Refactor integration workflow environment variables
- Removed environment variable definitions from the workflow file. - Directly specified the image and cluster parameters in the job configuration for clarity and simplicity.
1 parent 7cf30dd commit 9573293

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/integration-odh.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@ concurrency:
4141
group: ${{ github.workflow }}-${{ github.ref }}
4242
cancel-in-progress: true
4343

44-
env:
45-
FULL_IMAGE: quay.io/opendatahub/spark-operator:local
46-
KIND_CLUSTER_NAME: spark-operator
47-
K8S_VERSION: v1.32.0
48-
4944
jobs:
5045
run:
5146
strategy:
@@ -55,8 +50,8 @@ jobs:
5550
with:
5651
mode: ${{ github.event_name == 'pull_request' && 'local' || (github.event_name == 'workflow_dispatch' && inputs.mode || 'repo') }}
5752
dockerfile: examples/openshift/Dockerfile.odh
58-
full_image: ${{ env.FULL_IMAGE }}
59-
kind_cluster_name: ${{ env.KIND_CLUSTER_NAME }}
60-
k8s_version: ${{ env.K8S_VERSION }}
53+
full_image: quay.io/opendatahub/spark-operator:local
54+
kind_cluster_name: spark-operator
55+
k8s_version: v1.32.0
6156
arch: ${{ matrix.arch }}
6257
runner: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm64' || 'ubuntu-latest' }}

0 commit comments

Comments
 (0)