Description: Checks if LCM manifest is out of date.
Error Description: LCM Manifest found in the system is currently more than ### days old
Impact: Medium: May perform upgrade without addressing this issue.
Remediation: Please manually save or update to the latest manifest.ERROR [vcf_lcm, ###########, ###] [c.v.e.s.1.b.d.d.DepotBundleDownloadServiceImp1, Scheduled-3] Error verifying signature for manifest file bundle-###.manifest error INVALID_UNTRUSTED_CERTIFICATE
ERROR [vcf_lcm, ###########, ###] [c.v.e.s.1.c. s.BundleManifestDownloadScheduler, Scheduled-3] Exception while polling for bundle manifests com.vmware.evo.sddc.lcm.model.depot.exception.BundleInvalidSignatureException: INVALID_UNTRUSTED_CERTIFICATE
at com.vmware.evo.sddc.lcm.bundle.download.depot.DepotBundleDownloadServiceImpl.checkManifestSignature(DepotBundleDownloadServiceImpl. java:##This issue occurs because outdated or corrupted manifest and signature files fail verification. The system triggers a failure when it detects that these files exceed the allowed ##-day validity period or utilize untrusted certificates.
To resolve this issue, clean up historical manifests and temporarily disable signature validation.
Note : Take the snapshot of SDDC Manager VM before implementing the resolution steps
SSH into the SDDC Manager and elevate to root.
Execute the following command to remove old manifest entries from the database:
psql -h localhost -U postgres -d lcm -c "DELETE from manifest WHERE sequence_number < (SELECT MAX(sequence_number) FROM manifest)"/usr/pgsql/13/bin/psql -h localhost -U postgres -d lcm -c "DELETE from manifest WHERE sequence_number < (SELECT MAX(sequence_number) FROM manifest)" vi /opt/vmware/vcf/lcm/lcm-app/conf/application-prod.propertieslcm.depot.adapter.enableBundleSignatureValidation=false
lcm.depot.adapter.enableSignatureValidation=falsePress Esc, then type :wq! and press Enter to save the changes and close the file.systemctl restart lcmFor further details on the procedures mentioned in the resolution, refer to Cleanup historical manifests and Error BundleSignatureVerificationFailed.