Skip to content

Commit

Permalink
Merge pull request #885 from fluxcd/drift-correction-ready-condition
Browse files Browse the repository at this point in the history
Update Ready condition during drift correction
  • Loading branch information
stefanprodan committed Apr 29, 2024
2 parents 7289c17 + 56478cf commit b31701e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/reconcile/correct_cluster_drift.go
Expand Up @@ -24,6 +24,8 @@ import (
apierrutil "k8s.io/apimachinery/pkg/util/errors"
"k8s.io/client-go/tools/record"

"github.com/fluxcd/pkg/apis/meta"
"github.com/fluxcd/pkg/runtime/conditions"
"github.com/fluxcd/pkg/ssa"
"github.com/fluxcd/pkg/ssa/jsondiff"

Expand Down Expand Up @@ -64,6 +66,9 @@ func (r *CorrectClusterDrift) Reconcile(ctx context.Context, req *Request) error
ctx, cancel := context.WithTimeout(ctx, req.Object.GetTimeout().Duration)
defer cancel()

// Update condition to reflect the current status.
conditions.MarkUnknown(req.Object, meta.ReadyCondition, meta.ProgressingReason, "correcting cluster drift")

changeSet, err := action.ApplyDiff(ctx, r.configFactory.Build(nil), r.diff, r.fieldManager)
r.report(req.Object, changeSet, err)
return nil
Expand Down
7 changes: 7 additions & 0 deletions internal/reconcile/correct_cluster_drift_test.go
Expand Up @@ -24,10 +24,13 @@ import (
. "github.com/onsi/gomega"
extjsondiff "github.com/wI2L/jsondiff"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
apierrutil "k8s.io/apimachinery/pkg/util/errors"
"sigs.k8s.io/controller-runtime/pkg/client"

"github.com/fluxcd/pkg/apis/meta"
"github.com/fluxcd/pkg/runtime/conditions"
"github.com/fluxcd/pkg/ssa"
"github.com/fluxcd/pkg/ssa/jsondiff"

Expand Down Expand Up @@ -154,6 +157,10 @@ func TestCorrectClusterDrift_Reconcile(t *testing.T) {
} else {
g.Expect(recorder.GetEvents()).To(BeEmpty())
}

g.Expect(tt.obj.Status.Conditions).To(conditions.MatchConditions([]metav1.Condition{
*conditions.UnknownCondition(meta.ReadyCondition, meta.ProgressingReason, "correcting cluster drift"),
}))
})
}
}
Expand Down

0 comments on commit b31701e

Please sign in to comment.