VMware Cloud Foundation 4.4.x
VMware Cloud Foundation 4.3.x
VMware Cloud Foundation 4.1
VMware Cloud Foundation 4.2.x
Vmware Cloud Foundation 4.5
Vmware Cloud Foundation 5.x.x
Currently there is no resolution. The issue will be fixed in future VCF release.
Workaround:
Remove old manifest files from the LCM Database on the SDDC Manager.
1. SSH into the SDDC Manager and elevate to root.
2.Run the following command to remove old manifest files.
For version before 5.1 kindly run the below command:
psql -h localhost -U postgres -d lcm -c "DELETE from manifest WHERE sequence_number < (SELECT MAX(sequence_number) FROM manifest)"
Example output:
root@sddc-manager [ /home/vcf ]# psql -h localhost -U postgres -d lcm -c "DELETE from manifest WHERE sequence_number < (SELECT MAX(sequence_number) FROM manifest)"
DELETE 6
For version 5.1 and higher versions kindly run the below command:
root@sddc-manager [ /home/vcf ]# /usr/pgsql/13/bin/psql -h localhost -U postgres -d lcm -c "DELETE from manifest WHERE sequence_number < (SELECT MAX(sequence_number) FROM manifest)"