Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh committed Jul 30, 2024
1 parent 5c38e87 commit a21cb56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/k0s.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (r *InstallationReconciler) shouldUpgradeK0s(ctx context.Context, in *clust
log.Info("K0s upgrade required", "desired", desiredServerVersion, "running", runningServerVersion)
return true, nil
} else if desiredServerVersion.LessThan(runningServerVersion) {
log.V(5).Info("K0s downgrade not supported", "desired", desiredServerVersion, "running", runningServerVersion)
log.Info("K0s downgrade not supported", "desired", desiredServerVersion, "running", runningServerVersion) // TODO log.V(5)
return false, nil
}

Expand All @@ -46,7 +46,7 @@ func (r *InstallationReconciler) shouldUpgradeK0s(ctx context.Context, in *clust
log.Info("K0s upgrade required", "desired", desiredK0sVersion, "previous", previousK0sVersion)
return true, nil
}
log.V(5).Info("K0s upgrade not required", "desired", desiredK0sVersion, "previous", previousK0sVersion)
log.Info("K0s upgrade not required", "desired", desiredK0sVersion, "previous", previousK0sVersion) // TODO log.V(5)
return false, nil
}

Expand Down

0 comments on commit a21cb56

Please sign in to comment.