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 ClusterObjectSet.
472
472
typeRevisionStatusstruct {
473
-
// name of the ClusterExtensionRevision resource
473
+
// name of the ClusterObjectSet 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 ClusterObjectSets 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
+
// ClusterObjectSetObject represents a Kubernetes object to be applied as part
394
394
// of a phase, along with its collision protection settings.
395
395
//
396
396
// Exactly one of object or ref must be set.
397
397
//
398
398
// +kubebuilder:validation:XValidation:rule="has(self.object) != has(self.ref)",message="exactly one of object or ref must be set"
399
-
typeClusterExtensionRevisionObjectstruct {
399
+
typeClusterObjectSetObjectstruct {
400
400
// object is an optional embedded Kubernetes object to be applied.
401
401
//
402
402
// Exactly one of object or ref must be set.
@@ -484,27 +484,27 @@ const (
484
484
CollisionProtectionNoneCollisionProtection="None"
485
485
)
486
486
487
-
// ClusterExtensionRevisionStatus defines the observed state of a ClusterExtensionRevision.
488
-
typeClusterExtensionRevisionStatusstruct {
487
+
// ClusterObjectSetStatus defines the observed state of a ClusterObjectSet.
488
+
typeClusterObjectSetStatusstruct {
489
489
// conditions is an optional list of status conditions describing the state of the
490
-
// ClusterExtensionRevision.
490
+
// ClusterObjectSet.
491
491
//
492
492
// The Progressing condition represents whether the revision is actively rolling out:
493
-
// - When status is True and reason is RollingOut, the ClusterExtensionRevision rollout is actively making progress and is in transition.
494
-
// - When status is True and reason is Retrying, the ClusterExtensionRevision has encountered an error that could be resolved on subsequent reconciliation attempts.
495
-
// - When status is True and reason is Succeeded, the ClusterExtensionRevision has reached the desired state.
496
-
// - When status is False and reason is Blocked, the ClusterExtensionRevision has encountered an error that requires manual intervention for recovery.
497
-
// - When status is False and reason is Archived, the ClusterExtensionRevision is archived and not being actively reconciled.
493
+
// - When status is True and reason is RollingOut, the ClusterObjectSet rollout is actively making progress and is in transition.
494
+
// - When status is True and reason is Retrying, the ClusterObjectSet has encountered an error that could be resolved on subsequent reconciliation attempts.
495
+
// - When status is True and reason is Succeeded, the ClusterObjectSet has reached the desired state.
496
+
// - When status is False and reason is Blocked, the ClusterObjectSet has encountered an error that requires manual intervention for recovery.
497
+
// - When status is False and reason is Archived, the ClusterObjectSet is archived and not being actively reconciled.
498
498
//
499
499
// The Available condition represents whether the revision has been successfully rolled out and is available:
500
-
// - When status is True and reason is ProbesSucceeded, the ClusterExtensionRevision has been successfully rolled out and all objects pass their readiness probes.
500
+
// - When status is True and reason is ProbesSucceeded, the ClusterObjectSet has been successfully rolled out and all objects pass their readiness probes.
501
501
// - When status is False and reason is ProbeFailure, one or more objects are failing their readiness probes during rollout.
502
-
// - When status is Unknown and reason is Reconciling, the ClusterExtensionRevision has encountered an error that prevented it from observing the probes.
503
-
// - When status is Unknown and reason is Archived, the ClusterExtensionRevision has been archived and its objects have been torn down.
504
-
// - 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.
502
+
// - When status is Unknown and reason is Reconciling, the ClusterObjectSet has encountered an error that prevented it from observing the probes.
503
+
// - When status is Unknown and reason is Archived, the ClusterObjectSet has been archived and its objects have been torn down.
504
+
// - When status is Unknown and reason is Migrated, the ClusterObjectSet was migrated from an existing release and object status probe results have not yet been observed.
505
505
//
506
506
// The Succeeded condition represents whether the revision has successfully completed its rollout:
507
-
// - 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.
507
+
// - When status is True and reason is Succeeded, the ClusterObjectSet has successfully completed its rollout. This condition is set once and persists even if the revision later becomes unavailable.
508
508
//
509
509
// +listType=map
510
510
// +listMapKey=type
@@ -521,44 +521,44 @@ type ClusterExtensionRevisionStatus struct {
0 commit comments