diff --git a/upup/pkg/fi/dryrun_target.go b/upup/pkg/fi/dryrun_target.go index 6fe148edbc..e2be535b43 100644 --- a/upup/pkg/fi/dryrun_target.go +++ b/upup/pkg/fi/dryrun_target.go @@ -328,6 +328,9 @@ func buildChangeList[T SubContext](a, e, changes Task[T]) ([]change, error) { case reflect.String: changed = fieldValC.Convert(reflect.TypeOf("")).Interface() != "" + + case reflect.Int: + changed = fieldValA.Int() != fieldValE.Int() } if !changed { continue