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
Copy file name to clipboardExpand all lines: api/v1/clusterextension_types.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -468,9 +468,9 @@ type BundleMetadata struct {
468
468
Versionstring`json:"version"`
469
469
}
470
470
471
-
// RevisionStatus defines the observed state of a ClusterExtensionRevision.
471
+
// RevisionStatus defines the observed state of a ObjectSet.
472
472
typeRevisionStatusstruct {
473
-
// name of the ClusterExtensionRevision resource
473
+
// name of the ObjectSet resource
474
474
Namestring`json:"name"`
475
475
// conditions optionally expose Progressing and Available condition of the revision,
476
476
// in case when it is not yet marked as successfully installed (condition Succeeded is not set to True).
@@ -498,7 +498,7 @@ type ClusterExtensionStatus struct {
498
498
// When Progressing is True and the Reason is Retrying, the ClusterExtension has encountered an error that could be resolved on subsequent reconciliation attempts.
499
499
// When Progressing is False and the Reason is Blocked, the ClusterExtension has encountered an error that requires manual intervention for recovery.
500
500
// <opcon:experimental:description>
501
-
// When Progressing is True and Reason is RollingOut, the ClusterExtension has one or more ClusterExtensionRevisions in active roll out.
501
+
// When Progressing is True and Reason is RollingOut, the ClusterExtension has one or more ObjectSets in active roll out.
502
502
// </opcon:experimental:description>
503
503
//
504
504
// When the ClusterExtension is sourced from a catalog, it surfaces deprecation conditions based on catalog metadata.
@@ -518,7 +518,7 @@ type ClusterExtensionStatus struct {
// ClusterExtensionRevisionObject represents a Kubernetes object to be applied as part
393
+
// ObjectSetObject represents a Kubernetes object to be applied as part
394
394
// of a phase, along with its collision protection settings.
395
-
typeClusterExtensionRevisionObjectstruct {
395
+
typeObjectSetObjectstruct {
396
396
// object is a required embedded Kubernetes object to be applied.
397
397
//
398
398
// This object must be a valid Kubernetes resource with apiVersion, kind, and metadata fields.
@@ -442,27 +442,27 @@ const (
442
442
CollisionProtectionNoneCollisionProtection="None"
443
443
)
444
444
445
-
// ClusterExtensionRevisionStatus defines the observed state of a ClusterExtensionRevision.
446
-
typeClusterExtensionRevisionStatusstruct {
445
+
// ObjectSetStatus defines the observed state of a ObjectSet.
446
+
typeObjectSetStatusstruct {
447
447
// conditions is an optional list of status conditions describing the state of the
448
-
// ClusterExtensionRevision.
448
+
// ObjectSet.
449
449
//
450
450
// The Progressing condition represents whether the revision is actively rolling out:
451
-
// - When status is True and reason is RollingOut, the ClusterExtensionRevision rollout is actively making progress and is in transition.
452
-
// - When status is True and reason is Retrying, the ClusterExtensionRevision has encountered an error that could be resolved on subsequent reconciliation attempts.
453
-
// - When status is True and reason is Succeeded, the ClusterExtensionRevision has reached the desired state.
454
-
// - When status is False and reason is Blocked, the ClusterExtensionRevision has encountered an error that requires manual intervention for recovery.
455
-
// - When status is False and reason is Archived, the ClusterExtensionRevision is archived and not being actively reconciled.
451
+
// - When status is True and reason is RollingOut, the ObjectSet rollout is actively making progress and is in transition.
452
+
// - When status is True and reason is Retrying, the ObjectSet has encountered an error that could be resolved on subsequent reconciliation attempts.
453
+
// - When status is True and reason is Succeeded, the ObjectSet has reached the desired state.
454
+
// - When status is False and reason is Blocked, the ObjectSet has encountered an error that requires manual intervention for recovery.
455
+
// - When status is False and reason is Archived, the ObjectSet is archived and not being actively reconciled.
456
456
//
457
457
// The Available condition represents whether the revision has been successfully rolled out and is available:
458
-
// - When status is True and reason is ProbesSucceeded, the ClusterExtensionRevision has been successfully rolled out and all objects pass their readiness probes.
458
+
// - When status is True and reason is ProbesSucceeded, the ObjectSet has been successfully rolled out and all objects pass their readiness probes.
459
459
// - When status is False and reason is ProbeFailure, one or more objects are failing their readiness probes during rollout.
460
-
// - When status is Unknown and reason is Reconciling, the ClusterExtensionRevision has encountered an error that prevented it from observing the probes.
461
-
// - When status is Unknown and reason is Archived, the ClusterExtensionRevision has been archived and its objects have been torn down.
462
-
// - When status is Unknown and reason is Migrated, the ClusterExtensionRevision was migrated from an existing release and object status probe results have not yet been observed.
460
+
// - When status is Unknown and reason is Reconciling, the ObjectSet has encountered an error that prevented it from observing the probes.
461
+
// - When status is Unknown and reason is Archived, the ObjectSet has been archived and its objects have been torn down.
462
+
// - When status is Unknown and reason is Migrated, the ObjectSet was migrated from an existing release and object status probe results have not yet been observed.
463
463
//
464
464
// The Succeeded condition represents whether the revision has successfully completed its rollout:
465
-
// - When status is True and reason is Succeeded, the ClusterExtensionRevision has successfully completed its rollout. This condition is set once and persists even if the revision later becomes unavailable.
465
+
// - When status is True and reason is Succeeded, the ObjectSet has successfully completed its rollout. This condition is set once and persists even if the revision later becomes unavailable.
466
466
//
467
467
// +listType=map
468
468
// +listMapKey=type
@@ -479,44 +479,44 @@ type ClusterExtensionRevisionStatus struct {
0 commit comments