Skip to content

Commit 0489b2c

Browse files
Merge pull request #701 from openshift-bot/synchronize-upstream
NO-ISSUE: Synchronize From Upstream Repositories
2 parents aec0f1d + 301e9c8 commit 0489b2c

File tree

9 files changed

+28
-9
lines changed

9 files changed

+28
-9
lines changed

manifests/0000_50_olm_00-catalogsources.crd.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,7 @@ spec:
684684
- type
685685
x-kubernetes-list-type: map
686686
configMapReference:
687+
description: ConfigMapReference (deprecated) is the reference to the ConfigMap containing the catalog source's configuration, when the catalog source is a ConfigMap
687688
type: object
688689
required:
689690
- name
@@ -702,6 +703,7 @@ spec:
702703
description: UID is a type that holds unique ID values, including UUIDs. Because we don't ONLY use UUIDs, this is an alias to string. Being a type captures intent and helps make sure that UIDs and names do not get conflated.
703704
type: string
704705
connectionState:
706+
description: ConnectionState represents the current state of the CatalogSource's connection to the registry
705707
type: object
706708
required:
707709
- lastObservedState
@@ -724,6 +726,7 @@ spec:
724726
description: Reason is the reason the CatalogSource was transitioned to its current state.
725727
type: string
726728
registryService:
729+
description: RegistryService represents the current state of the GRPC service used to serve the catalog
727730
type: object
728731
properties:
729732
createdAt:

microshift-manifests/0000_50_olm_00-catalogsources.crd.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,7 @@ spec:
684684
- type
685685
x-kubernetes-list-type: map
686686
configMapReference:
687+
description: ConfigMapReference (deprecated) is the reference to the ConfigMap containing the catalog source's configuration, when the catalog source is a ConfigMap
687688
type: object
688689
required:
689690
- name
@@ -702,6 +703,7 @@ spec:
702703
description: UID is a type that holds unique ID values, including UUIDs. Because we don't ONLY use UUIDs, this is an alias to string. Being a type captures intent and helps make sure that UIDs and names do not get conflated.
703704
type: string
704705
connectionState:
706+
description: ConnectionState represents the current state of the CatalogSource's connection to the registry
705707
type: object
706708
required:
707709
- lastObservedState
@@ -724,6 +726,7 @@ spec:
724726
description: Reason is the reason the CatalogSource was transitioned to its current state.
725727
type: string
726728
registryService:
729+
description: RegistryService represents the current state of the GRPC service used to serve the catalog
727730
type: object
728731
properties:
729732
createdAt:

staging/api/.github/workflows/go.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jobs:
3030
${{ runner.os }}-go-
3131
- name: unit-test
3232
run: go test -v ./... -coverprofile cover.out
33-
- uses: codecov/codecov-action@v3
33+
- uses: codecov/codecov-action@v4
3434
with:
3535
files: cover.out
3636
functionalities: fixes
37+
token: ${{ secrets.CODECOV_TOKEN }}
3738

3839
go-apidiff:
3940
name: go-apidiff

staging/api/crds/operators.coreos.com_catalogsources.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,7 @@ spec:
680680
- type
681681
x-kubernetes-list-type: map
682682
configMapReference:
683+
description: ConfigMapReference (deprecated) is the reference to the ConfigMap containing the catalog source's configuration, when the catalog source is a ConfigMap
683684
type: object
684685
required:
685686
- name
@@ -698,6 +699,7 @@ spec:
698699
description: UID is a type that holds unique ID values, including UUIDs. Because we don't ONLY use UUIDs, this is an alias to string. Being a type captures intent and helps make sure that UIDs and names do not get conflated.
699700
type: string
700701
connectionState:
702+
description: ConnectionState represents the current state of the CatalogSource's connection to the registry
701703
type: object
702704
required:
703705
- lastObservedState
@@ -720,6 +722,7 @@ spec:
720722
description: Reason is the reason the CatalogSource was transitioned to its current state.
721723
type: string
722724
registryService:
725+
description: RegistryService represents the current state of the GRPC service used to serve the catalog
723726
type: object
724727
properties:
725728
createdAt:

staging/api/crds/zz_defs.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/api/pkg/operators/v1alpha1/catalogsource_types.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,12 @@ type CatalogSourceStatus struct {
244244
// The last time the CatalogSource image registry has been polled to ensure the image is up-to-date
245245
LatestImageRegistryPoll *metav1.Time `json:"latestImageRegistryPoll,omitempty"`
246246

247-
ConfigMapResource *ConfigMapResourceReference `json:"configMapReference,omitempty"`
248-
RegistryServiceStatus *RegistryServiceStatus `json:"registryService,omitempty"`
249-
GRPCConnectionState *GRPCConnectionState `json:"connectionState,omitempty"`
247+
// ConfigMapReference (deprecated) is the reference to the ConfigMap containing the catalog source's configuration, when the catalog source is a ConfigMap
248+
ConfigMapResource *ConfigMapResourceReference `json:"configMapReference,omitempty"`
249+
// RegistryService represents the current state of the GRPC service used to serve the catalog
250+
RegistryServiceStatus *RegistryServiceStatus `json:"registryService,omitempty"`
251+
// ConnectionState represents the current state of the CatalogSource's connection to the registry
252+
GRPCConnectionState *GRPCConnectionState `json:"connectionState,omitempty"`
250253

251254
// Represents the state of a CatalogSource. Note that Message and Reason represent the original
252255
// status information, which may be migrated to be conditions based in the future. Any new features

vendor/github.com/operator-framework/api/crds/operators.coreos.com_catalogsources.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/operator-framework/api/crds/zz_defs.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/operator-framework/api/pkg/operators/v1alpha1/catalogsource_types.go

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)