We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263dbc1 commit dff64ccCopy full SHA for dff64cc
controllers/cloudstackfailuredomain_controller.go
@@ -157,6 +157,9 @@ func (r *CloudStackFailureDomainReconciliationRunner) GetAllMachinesInFailureDom
157
// RequeueIfClusterNotReady check cluster to see if there is any rolling update going on.
158
func (r *CloudStackFailureDomainReconciliationRunner) RequeueIfClusterNotReady() (ctrl.Result, error) {
159
if len(r.Machines) > 0 {
160
+ if !r.CAPICluster.DeletionTimestamp.IsZero() {
161
+ return ctrl.Result{}, nil
162
+ }
163
for _, condition := range r.CAPICluster.Status.Conditions {
164
if condition.Type == conditionTypeReady && condition.Status == conditionStatusFalse {
165
return r.RequeueWithMessage("cluster status not ready,")
0 commit comments