This KB provides instructions on renaming the vLCM image from the lifecycle manager database without impacting the system functionality.
VMware Cloud Foundation 5.x
Renaming the vLCM image using the API Explorer's Personality option is currently not possible due to limitations in the SDDC Manager user interface.
The issue will be resolved in a future 5.x SDDC release.
Workaround:
The vLCM image name can be renamed using the SDDC lifecycle manager database by following the steps below:
personality_id matching the existing personality name in the lifecycle manager database .
/usr/pgsql/13/bin/psql -h localhost -U postgres -d lcm -c "select personality_id,personality_name from personality" New_personality_name and ID as per the output from the above step.
/usr/pgsql/13/bin/psql -h localhost -U postgres -d lcm -c "update personality set personality_name='New_personality_name" where personality_id='ID';/usr/pgsql/13/bin/psql -h localhost -U postgres -d lcm -c "select personality_id,personality_name from personality"