Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
lint:
name: Run on Ubuntu
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Clone the code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
test:
name: Run on Ubuntu
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Clone the code
Expand Down
4 changes: 2 additions & 2 deletions api/v1alpha1/ingestionpipeline_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}
Expand Down
4 changes: 2 additions & 2 deletions api/v1alpha1/openmetadataservice_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}
Expand Down
4 changes: 2 additions & 2 deletions api/v1alpha1/openmetadatatestcase_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading