You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -508,11 +495,9 @@ type ClusterExtensionStatus struct {
508
495
// - "Unpacked", represents whether or not the bundle contents have been successfully unpacked
509
496
//
510
497
// The current set of reasons are:
511
-
// - "ResolutionFailed", this reason is set on the "Resolved" condition when an error has occurred during resolution.
512
-
// - "InstallationFailed", this reason is set on the "Installed" condition when an error has occurred during installation
513
-
// - "Success", this reason is set on the "Resolved" and "Installed" conditions when resolution and installation/upgrading is successful
514
-
// - "UnpackSuccess", this reason is set on the "Unpacked" condition when unpacking a bundle's content is successful
515
-
// - "UnpackFailed", this reason is set on the "Unpacked" condition when an error has been encountered while unpacking the contents of a bundle
498
+
// - "Success", this reason is set on the "Unpacked", "Resolved" and "Installed" conditions when unpacking a bundle's content, resolution and installation/upgrading is successful
499
+
// - "Failed", this reason is set on the "Unpacked", "Resolved" and "Installed" conditions when an error has occurred while unpacking the contents of a bundle, during resolution or installation.
Copy file name to clipboardExpand all lines: config/base/crd/bases/olm.operatorframework.io_clusterextensions.yaml
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -484,11 +484,8 @@ spec:
484
484
- "Unpacked", represents whether or not the bundle contents have been successfully unpacked
485
485
486
486
The current set of reasons are:
487
-
- "ResolutionFailed", this reason is set on the "Resolved" condition when an error has occurred during resolution.
488
-
- "InstallationFailed", this reason is set on the "Installed" condition when an error has occurred during installation
489
-
- "Success", this reason is set on the "Resolved" and "Installed" conditions when resolution and installation/upgrading is successful
490
-
- "UnpackSuccess", this reason is set on the "Unpacked" condition when unpacking a bundle's content is successful
491
-
- "UnpackFailed", this reason is set on the "Unpacked" condition when an error has been encountered while unpacking the contents of a bundle
487
+
- "Success", this reason is set on the "Unpacked", "Resolved" and "Installed" conditions when unpacking a bundle's content, resolution and installation/upgrading is successful
488
+
- "Failed", this reason is set on the "Unpacked", "Resolved" and "Installed" conditions when an error has occurred while unpacking the contents of a bundle, during resolution or installation.
492
489
items:
493
490
description: Condition contains details for one aspect of the current
| `conditions` _[Condition](https://kubernetes.io/docs/reference/generated/kubernetes-api/v/#condition-v1-meta) array_ | conditions is a representation of the current state for this ClusterExtension.<br />The status is represented by a set of "conditions".<br /><br />Each condition is generally structured in the following format:<br /> - Type: a string representation of the condition type. More or less the condition "name".<br /> - Status: a string representation of the state of the condition. Can be one of ["True", "False", "Unknown"].<br /> - Reason: a string representation of the reason for the current state of the condition. Typically useful for building automation around particular Type+Reason combinations.<br /> - Message: a human readable message that further elaborates on the state of the condition<br /><br />The current set of condition types are:<br /> - "Installed", represents whether or not the package referenced in the spec.packageName field has been installed<br /> - "Resolved", represents whether or not a bundle was found that satisfies the selection criteria outlined in the spec<br /> - "Deprecated", represents an aggregation of the PackageDeprecated, ChannelDeprecated, and BundleDeprecated condition types.<br /> - "PackageDeprecated", represents whether or not the package specified in the spec.packageName field has been deprecated<br /> - "ChannelDeprecated", represents whether or not the channel specified in spec.channel has been deprecated<br /> - "BundleDeprecated", represents whether or not the bundle installed is deprecated<br /> - "Unpacked", represents whether or not the bundle contents have been successfully unpacked<br /><br />The current set of reasons are:<br /> - "ResolutionFailed", this reason is set on the "Resolved" condition when an error has occurred during resolution.<br /> - "InstallationFailed", this reason is set on the "Installed" condition when an error has occurred during installation<br /> - "Success", this reason is set on the "Resolved" and "Installed" conditions when resolution and installation/upgrading is successful<br /> - "UnpackSuccess", this reason is set on the "Unpacked" condition when unpacking a bundle's content is successful<br /> - "UnpackFailed", this reason is set on the "Unpacked" condition when an error has been encountered while unpacking the contents of a bundle | | |
213
+
| `conditions` _[Condition](https://kubernetes.io/docs/reference/generated/kubernetes-api/v/#condition-v1-meta) array_ | conditions is a representation of the current state for this ClusterExtension.<br />The status is represented by a set of "conditions".<br /><br />Each condition is generally structured in the following format:<br /> - Type: a string representation of the condition type. More or less the condition "name".<br /> - Status: a string representation of the state of the condition. Can be one of ["True", "False", "Unknown"].<br /> - Reason: a string representation of the reason for the current state of the condition. Typically useful for building automation around particular Type+Reason combinations.<br /> - Message: a human readable message that further elaborates on the state of the condition<br /><br />The current set of condition types are:<br /> - "Installed", represents whether or not the package referenced in the spec.packageName field has been installed<br /> - "Resolved", represents whether or not a bundle was found that satisfies the selection criteria outlined in the spec<br /> - "Deprecated", represents an aggregation of the PackageDeprecated, ChannelDeprecated, and BundleDeprecated condition types.<br /> - "PackageDeprecated", represents whether or not the package specified in the spec.packageName field has been deprecated<br /> - "ChannelDeprecated", represents whether or not the channel specified in spec.channel has been deprecated<br /> - "BundleDeprecated", represents whether or not the bundle installed is deprecated<br /> - "Unpacked", represents whether or not the bundle contents have been successfully unpacked<br /><br />The current set of reasons are:<br /> - "Success", this reason is set on the "Unpacked", "Resolved" and "Installed" conditions when unpacking a bundle's content, resolution and installation/upgrading is successful<br /> - "Failed", this reason is set on the "Unpacked", "Resolved" and "Installed" conditions when an error has occurred while unpacking the contents of a bundle, during resolution or installation. | | |
assert.Equal(ct, "error upgrading from currently installed version \"1.0.0\": no bundles found for package \"prometheus\" matching version \"1.2.0\"", cond.Message)
0 commit comments