When attempting to upload a CSAR file to TCA, the following symptoms occur:
VNFD parse service failure. java.net.SocketException: Connection reset error.3.2
The root cause is Management Domain resource exhaustion on the TCA Manager appliance. Specifically, the /logs partition (typically /dev/mapper/vg_logs-lv_logs) reaches 100% capacity.
When this partition is full, the Java-based tca-catalog and vnfd-parsing services cannot write the temporary metadata or transaction logs required to parse and validate the incoming CSAR/VNFD payload. This leads to an ungraceful termination of the TCP connection, manifested as a socket reset.
To resolve this issue, you must reclaim space on the TCA Manager appliance log partition.
df -h /logscd /logs/retained-logs/kubelet.service
/logs partition.find /logs -type f \( -size +40M -o -iname "*.tar.gz" \) -delete