1
0
mirror of synced 2026-02-13 13:06:56 +00:00

Add resume source commands

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2020-11-26 16:40:54 +02:00
parent 072138deff
commit e7ff319685
13 changed files with 684 additions and 6 deletions

View File

@@ -109,9 +109,6 @@ func isHelmReleaseResumed(ctx context.Context, kubeClient client.Client,
case metav1.ConditionTrue:
return true, nil
case metav1.ConditionFalse:
if c.Reason == meta.SuspendedReason {
return false, nil
}
return false, fmt.Errorf(c.Message)
}
}