Skip to content

Commit c9db13e

Browse files
dependabot[bot]tmshort
authored andcommitted
build(deps): bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.17.3 (#1309)
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.17.2 to 2.17.3. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](onsi/ginkgo@v2.17.2...v2.17.3) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Upstream-repository: operator-registry Upstream-commit: 8e24c8820510a6d3890a561b1873c98deb7ebf3c
1 parent 73b4cd4 commit c9db13e

18 files changed

+13841
-2527
lines changed

manifests/0000_50_olm_00-catalogsources.crd.yaml

Lines changed: 610 additions & 112 deletions
Large diffs are not rendered by default.

manifests/0000_50_olm_00-clusterserviceversions.crd.yaml

Lines changed: 4105 additions & 728 deletions
Large diffs are not rendered by default.

manifests/0000_50_olm_00-installplans.crd.yaml

Lines changed: 93 additions & 25 deletions
Large diffs are not rendered by default.

manifests/0000_50_olm_00-olmconfigs.crd.yaml

Lines changed: 66 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.8.0
5+
controller-gen.kubebuilder.io/version: v0.15.0
66
include.release.openshift.io/ibm-cloud-managed: "true"
77
include.release.openshift.io/hypershift: "true"
88
include.release.openshift.io/self-managed-high-availability: "true"
99
capability.openshift.io/name: "OperatorLifecycleManager"
10-
creationTimestamp: null
1110
name: olmconfigs.operators.coreos.com
1211
spec:
1312
group: operators.coreos.com
@@ -29,10 +28,19 @@ spec:
2928
- metadata
3029
properties:
3130
apiVersion:
32-
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
31+
description: |-
32+
APIVersion defines the versioned schema of this representation of an object.
33+
Servers should convert recognized schemas to the latest internal value, and
34+
may reject unrecognized values.
35+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3336
type: string
3437
kind:
35-
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
38+
description: |-
39+
Kind is a string value representing the REST resource this object represents.
40+
Servers may infer this from the endpoint the client submits requests to.
41+
Cannot be updated.
42+
In CamelCase.
43+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3644
type: string
3745
metadata:
3846
type: object
@@ -45,10 +53,22 @@ spec:
4553
type: object
4654
properties:
4755
disableCopiedCSVs:
48-
description: DisableCopiedCSVs is used to disable OLM's "Copied CSV" feature for operators installed at the cluster scope, where a cluster scoped operator is one that has been installed in an OperatorGroup that targets all namespaces. When reenabled, OLM will recreate the "Copied CSVs" for each cluster scoped operator.
56+
description: |-
57+
DisableCopiedCSVs is used to disable OLM's "Copied CSV" feature
58+
for operators installed at the cluster scope, where a cluster
59+
scoped operator is one that has been installed in an
60+
OperatorGroup that targets all namespaces.
61+
When reenabled, OLM will recreate the "Copied CSVs" for each
62+
cluster scoped operator.
4963
type: boolean
5064
packageServerSyncInterval:
51-
description: PackageServerSyncInterval is used to define the sync interval for packagerserver pods. Packageserver pods periodically check the status of CatalogSources; this specifies the period using duration format (e.g. "60m"). For this parameter, only hours ("h"), minutes ("m"), and seconds ("s") may be specified. When not specified, the period defaults to the value specified within the packageserver.
65+
description: |-
66+
PackageServerSyncInterval is used to define the sync interval for
67+
packagerserver pods. Packageserver pods periodically check the
68+
status of CatalogSources; this specifies the period using duration
69+
format (e.g. "60m"). For this parameter, only hours ("h"), minutes
70+
("m"), and seconds ("s") may be specified. When not specified, the
71+
period defaults to the value specified within the packageserver.
5272
type: string
5373
pattern: ^([0-9]+(\.[0-9]+)?(s|m|h))+$
5474
status:
@@ -58,7 +78,24 @@ spec:
5878
conditions:
5979
type: array
6080
items:
61-
description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }"
81+
description: |-
82+
Condition contains details for one aspect of the current state of this API Resource.
83+
---
84+
This struct is intended for direct use as an array at the field path .status.conditions. For example,
85+
86+
87+
type FooStatus struct{
88+
// Represents the observations of a foo's current state.
89+
// Known .status.conditions.type are: "Available", "Progressing", and "Degraded"
90+
// +patchMergeKey=type
91+
// +patchStrategy=merge
92+
// +listType=map
93+
// +listMapKey=type
94+
Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
95+
96+
97+
// other fields
98+
}
6299
type: object
63100
required:
64101
- lastTransitionTime
@@ -68,20 +105,32 @@ spec:
68105
- type
69106
properties:
70107
lastTransitionTime:
71-
description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
108+
description: |-
109+
lastTransitionTime is the last time the condition transitioned from one status to another.
110+
This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
72111
type: string
73112
format: date-time
74113
message:
75-
description: message is a human readable message indicating details about the transition. This may be an empty string.
114+
description: |-
115+
message is a human readable message indicating details about the transition.
116+
This may be an empty string.
76117
type: string
77118
maxLength: 32768
78119
observedGeneration:
79-
description: observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
120+
description: |-
121+
observedGeneration represents the .metadata.generation that the condition was set based upon.
122+
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date
123+
with respect to the current state of the instance.
80124
type: integer
81125
format: int64
82126
minimum: 0
83127
reason:
84-
description: reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
128+
description: |-
129+
reason contains a programmatic identifier indicating the reason for the condition's last transition.
130+
Producers of specific condition types may define expected values and meanings for this field,
131+
and whether the values are considered a guaranteed API.
132+
The value should be a CamelCase string.
133+
This field may not be empty.
85134
type: string
86135
maxLength: 1024
87136
minLength: 1
@@ -94,7 +143,12 @@ spec:
94143
- "False"
95144
- Unknown
96145
type:
97-
description: type of condition in CamelCase or in foo.example.com/CamelCase. --- Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to deconflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
146+
description: |-
147+
type of condition in CamelCase or in foo.example.com/CamelCase.
148+
---
149+
Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be
150+
useful (see .node.status.conditions), the ability to deconflict is important.
151+
The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
98152
type: string
99153
maxLength: 316
100154
pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$

0 commit comments

Comments
 (0)