-backupStatusInCluster
+rolloutStatusInCluster
github.com/fluxcd/flagger/pkg/apis/flagger/v1beta1.CanaryStatus
diff --git a/manifests/charts/fleet-manager/crds/apps.kurator.dev_applications.yaml b/manifests/charts/fleet-manager/crds/apps.kurator.dev_applications.yaml
index 39a49637d..69aacc242 100644
--- a/manifests/charts/fleet-manager/crds/apps.kurator.dev_applications.yaml
+++ b/manifests/charts/fleet-manager/crds/apps.kurator.dev_applications.yaml
@@ -2683,11 +2683,15 @@ spec:
rolloutStatus:
description: RolloutStatus defines the observed state of Rollout.
properties:
- backupNameInCluster:
+ clusterName:
+ description: ClusterName is the Name of the cluster where
+ the rollout is being performed.
+ type: string
+ rolloutNameInCluster:
description: RolloutNameInCluster is the name of the rollout
being performed within this cluster.
type: string
- backupStatusInCluster:
+ rolloutStatusInCluster:
description: RolloutStatusInCluster is the current status
of the Rollout performed within this cluster.
properties:
@@ -2753,10 +2757,6 @@ spec:
- iterations
- phase
type: object
- clusterName:
- description: ClusterName is the Name of the cluster where
- the rollout is being performed.
- type: string
type: object
type: object
type: array
diff --git a/pkg/apis/apps/v1alpha1/types.go b/pkg/apis/apps/v1alpha1/types.go
index f896e0168..78c6c9493 100644
--- a/pkg/apis/apps/v1alpha1/types.go
+++ b/pkg/apis/apps/v1alpha1/types.go
@@ -461,11 +461,11 @@ type RolloutStatus struct {
// RolloutNameInCluster is the name of the rollout being performed within this cluster.
// +optional
- RolloutNameInCluster string `json:"backupNameInCluster,omitempty"`
+ RolloutNameInCluster string `json:"rolloutNameInCluster,omitempty"`
// RolloutStatusInCluster is the current status of the Rollout performed within this cluster.
// +optional
- RolloutStatusInCluster *flaggerv1b1.CanaryStatus `json:"backupStatusInCluster,omitempty"`
+ RolloutStatusInCluster *flaggerv1b1.CanaryStatus `json:"rolloutStatusInCluster,omitempty"`
}
// ApplicationList contains a list of Application.
|