kapp-controller periodically triggers PackageInstall (PKGI) objects reconciliation every few minutes.
There may be cases where we don't want to wait for the automatic reconciliation but trigger a manual one.
We can pause and unpause the PKGI reconciliation to trigger a new one.
Reference to how to pause/unpause it: Pause Lifecycle Management for an Auto-Managed Package
# kubectl patch packageinstall/<PACKAGE-NAME> -n tkg-system -p '{"spec":{"paused":true}}' --type=merge
# kubectl patch packageinstall/<PACKAGE-NAME> -n tkg-system -p '{"spec":{"paused":false}}' --type=merge