Skip to content

Commit

Permalink
Add disruption condition at target level
Browse files Browse the repository at this point in the history
Signed-off-by: Md. Ishtiaq Islam <ishtiaq@appscode.com>
  • Loading branch information
ishtiaqhimel committed Aug 23, 2024
1 parent 49ed0e8 commit c85807d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 21 deletions.
14 changes: 8 additions & 6 deletions apis/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,14 @@ const (
)

const (
LabelApp = "app"
LabelInvokerType = StashKey + "/invoker-type"
LabelInvokerName = StashKey + "/invoker-name"
LabelTargetKind = StashKey + "/target-kind"
LabelTargetNamespace = StashKey + "/target-namespace"
LabelTargetName = StashKey + "/target-name"
LabelApp = "app"
LabelInvokerType = StashKey + "/invoker-type"
LabelInvokerName = StashKey + "/invoker-name"
LabelTargetKind = StashKey + "/target-kind"
LabelTargetNamespace = StashKey + "/target-namespace"
LabelTargetName = StashKey + "/target-name"
LabelTargetAPIGroup = StashKey + "/target-api-group"
LabelTargetAPIVersion = StashKey + "/target-api-version"
)

const (
Expand Down
33 changes: 19 additions & 14 deletions pkg/conditions/backupsession.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,25 @@ func SetPostBackupHookExecutionSucceededToTrueWithMsg(session *invoker.BackupSes
})
}

func SetBackupDisruptedConditionToTrue(session *invoker.BackupSessionHandler, target v1beta1.TargetRef, err error) error {
return session.UpdateStatus(&v1beta1.BackupSessionStatus{
Targets: []v1beta1.BackupTargetStatus{
{
Ref: target,
Conditions: []kmapi.Condition{
{
Type: v1beta1.BackupDisrupted,
Status: metav1.ConditionTrue,
Reason: v1beta1.FailedToCompleteDueToDisruption,
Message: fmt.Sprintf("Failed to complete backup. Reason: %v.", err.Error()),
LastTransitionTime: metav1.Now(),
},
},
},
},
})
}

func SetGlobalPreBackupHookSucceededConditionToFalse(session *invoker.BackupSessionHandler, hookErr error) error {
return session.UpdateStatus(&v1beta1.BackupSessionStatus{
Conditions: []kmapi.Condition{
Expand Down Expand Up @@ -399,17 +418,3 @@ func SetBackupDeadlineExceededConditionToTrue(session *invoker.BackupSessionHand
},
})
}

func SetBackupDisruptedConditionToTrue(session *invoker.BackupSessionHandler, err error) error {
return session.UpdateStatus(&v1beta1.BackupSessionStatus{
Conditions: []kmapi.Condition{
{
Type: v1beta1.BackupDisrupted,
Status: metav1.ConditionTrue,
Reason: v1beta1.FailedToCompleteDueToDisruption,
Message: fmt.Sprintf("Failed to complete backup. Reason: %v.", err.Error()),
LastTransitionTime: metav1.Now(),
},
},
})
}
2 changes: 1 addition & 1 deletion pkg/invoker/backupsession.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ func upsertBackupHostStatus(cur, new []v1beta1.HostBackupStats) []v1beta1.HostBa
func calculateBackupTargetPhase(status v1beta1.BackupTargetStatus) v1beta1.TargetPhase {
if cutil.IsConditionFalse(status.Conditions, v1beta1.BackupExecutorEnsured) ||
cutil.IsConditionFalse(status.Conditions, v1beta1.PreBackupHookExecutionSucceeded) ||
cutil.IsConditionTrue(status.Conditions, v1beta1.BackupDisrupted) ||
cutil.IsConditionFalse(status.Conditions, v1beta1.PostBackupHookExecutionSucceeded) {
return v1beta1.TargetBackupFailed
}
Expand Down Expand Up @@ -250,7 +251,6 @@ func calculateBackupSessionPhase(status *v1beta1.BackupSessionStatus) v1beta1.Ba

if cutil.IsConditionTrue(status.Conditions, v1beta1.MetricsPushed) &&
(cutil.IsConditionTrue(status.Conditions, v1beta1.DeadlineExceeded) ||
cutil.IsConditionTrue(status.Conditions, v1beta1.BackupDisrupted) ||
cutil.IsConditionFalse(status.Conditions, v1beta1.BackupHistoryCleaned) ||
cutil.IsConditionFalse(status.Conditions, v1beta1.GlobalPreBackupHookSucceeded) ||
cutil.IsConditionFalse(status.Conditions, v1beta1.GlobalPostBackupHookSucceeded)) {
Expand Down

0 comments on commit c85807d

Please sign in to comment.