From 1957bedb0e57e5694b2774e3c43687fc86636473 Mon Sep 17 00:00:00 2001 From: berimbolo13 Date: Tue, 14 Apr 2026 00:16:23 +0800 Subject: [PATCH 1/2] Update connection ref descriptions to reflect cluster scope --- api/v1alpha1/ingestionpipeline_types.go | 4 ++-- api/v1alpha1/openmetadataservice_types.go | 4 ++-- api/v1alpha1/openmetadatatestcase_types.go | 4 ++-- .../bases/openmetadata.vortexa.com_ingestionpipelines.yaml | 4 ++-- .../bases/openmetadata.vortexa.com_openmetadataservices.yaml | 4 ++-- .../bases/openmetadata.vortexa.com_openmetadatatestcases.yaml | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/api/v1alpha1/ingestionpipeline_types.go b/api/v1alpha1/ingestionpipeline_types.go index 54acdf6..1a2003e 100644 --- a/api/v1alpha1/ingestionpipeline_types.go +++ b/api/v1alpha1/ingestionpipeline_types.go @@ -62,8 +62,8 @@ type IngestionPipelineSpec struct { // ForOpenMetadata contains the fields forwarded to the OpenMetadata API. ForOpenMetadata IngestionPipelineOMSpec `json:"forOpenMetadata"` - // OpenMetadataConnectionRef is the name of the OpenMetadataConnection resource - // in the same namespace that defines the target OpenMetadata instance. + // OpenMetadataConnectionRef is the name of the cluster-scoped OpenMetadataConnection + // resource that defines the target OpenMetadata instance. // +kubebuilder:validation:MinLength=1 OpenMetadataConnectionRef string `json:"openMetadataConnectionRef"` } diff --git a/api/v1alpha1/openmetadataservice_types.go b/api/v1alpha1/openmetadataservice_types.go index df23ad0..c41bc11 100644 --- a/api/v1alpha1/openmetadataservice_types.go +++ b/api/v1alpha1/openmetadataservice_types.go @@ -26,8 +26,8 @@ type OpenMetadataServiceSpec struct { // ForOpenMetadata contains the fields forwarded to the OpenMetadata API. ForOpenMetadata ServiceOMSpec `json:"forOpenMetadata"` - // OpenMetadataConnectionRef is the name of the OpenMetadataConnection resource - // in the same namespace that defines the target OpenMetadata instance. + // OpenMetadataConnectionRef is the name of the cluster-scoped OpenMetadataConnection + // resource that defines the target OpenMetadata instance. // +kubebuilder:validation:MinLength=1 OpenMetadataConnectionRef string `json:"openMetadataConnectionRef"` } diff --git a/api/v1alpha1/openmetadatatestcase_types.go b/api/v1alpha1/openmetadatatestcase_types.go index b7fd0ed..4f88100 100644 --- a/api/v1alpha1/openmetadatatestcase_types.go +++ b/api/v1alpha1/openmetadatatestcase_types.go @@ -25,8 +25,8 @@ type OpenMetadataTestCaseSpec struct { // ForOpenMetadata contains the fields forwarded to the OpenMetadata API. ForOpenMetadata TestCaseOMSpec `json:"forOpenMetadata"` - // OpenMetadataConnectionRef is the name of the OpenMetadataConnection resource - // in the same namespace that defines the target OpenMetadata instance. + // OpenMetadataConnectionRef is the name of the cluster-scoped OpenMetadataConnection + // resource that defines the target OpenMetadata instance. // +kubebuilder:validation:MinLength=1 OpenMetadataConnectionRef string `json:"openMetadataConnectionRef"` } diff --git a/config/crd/bases/openmetadata.vortexa.com_ingestionpipelines.yaml b/config/crd/bases/openmetadata.vortexa.com_ingestionpipelines.yaml index e2117c1..51fd632 100644 --- a/config/crd/bases/openmetadata.vortexa.com_ingestionpipelines.yaml +++ b/config/crd/bases/openmetadata.vortexa.com_ingestionpipelines.yaml @@ -166,8 +166,8 @@ spec: type: object openMetadataConnectionRef: description: |- - OpenMetadataConnectionRef is the name of the OpenMetadataConnection resource - in the same namespace that defines the target OpenMetadata instance. + OpenMetadataConnectionRef is the name of the cluster-scoped OpenMetadataConnection + resource that defines the target OpenMetadata instance. minLength: 1 type: string required: diff --git a/config/crd/bases/openmetadata.vortexa.com_openmetadataservices.yaml b/config/crd/bases/openmetadata.vortexa.com_openmetadataservices.yaml index 585e332..6cd83e1 100644 --- a/config/crd/bases/openmetadata.vortexa.com_openmetadataservices.yaml +++ b/config/crd/bases/openmetadata.vortexa.com_openmetadataservices.yaml @@ -160,8 +160,8 @@ spec: type: object openMetadataConnectionRef: description: |- - OpenMetadataConnectionRef is the name of the OpenMetadataConnection resource - in the same namespace that defines the target OpenMetadata instance. + OpenMetadataConnectionRef is the name of the cluster-scoped OpenMetadataConnection + resource that defines the target OpenMetadata instance. minLength: 1 type: string required: diff --git a/config/crd/bases/openmetadata.vortexa.com_openmetadatatestcases.yaml b/config/crd/bases/openmetadata.vortexa.com_openmetadatatestcases.yaml index dc7404b..de8361d 100644 --- a/config/crd/bases/openmetadata.vortexa.com_openmetadatatestcases.yaml +++ b/config/crd/bases/openmetadata.vortexa.com_openmetadatatestcases.yaml @@ -102,8 +102,8 @@ spec: type: object openMetadataConnectionRef: description: |- - OpenMetadataConnectionRef is the name of the OpenMetadataConnection resource - in the same namespace that defines the target OpenMetadata instance. + OpenMetadataConnectionRef is the name of the cluster-scoped OpenMetadataConnection + resource that defines the target OpenMetadata instance. minLength: 1 type: string required: From 2362a3423c6aeff48d883e6a2010492fcb431123 Mon Sep 17 00:00:00 2001 From: berimbolo13 Date: Tue, 14 Apr 2026 00:24:05 +0800 Subject: [PATCH 2/2] Fix workflow job names to match required status checks --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 44abc1a..39259ed 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,7 @@ on: jobs: lint: - name: Run on Ubuntu + name: Run linter runs-on: ubuntu-latest steps: - name: Clone the code diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc2e80d..9da38f0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ on: jobs: test: - name: Run on Ubuntu + name: Run tests runs-on: ubuntu-latest steps: - name: Clone the code