TCA 3.2
TCP 5.0
The root cause is an incorrectly defined Cloud Service Archive (CSAR) or Nodepool Customization template. A Tuned profile (containing INI-style headers like [main] and [modules]) is being injected directly into /etc/sysctl.d/91-custom.conf. Standard sysctl parsers do not recognize these headers and fail to process the file.
This method addresses the root cause within the NF package to ensure future deployments are consistent.
Extract the affected CSAR file.
Locate the file mapping for /etc/sysctl.d/91-custom.conf.
Modify the CSAR to ensure that the content being pushed to /etc/sysctl.d/ contains only valid key=value pairs.
Incorrect path/content: Pointing a Tuned profile directly to /etc/sysctl.d/.
Correct path: If using Tuned, the file should be placed in the appropriate Tuned profile directory (e.g., Artifacts/scripts/91-custom.conf or a custom Tuned path) and activated via the Tuned daemon.
If the file must remain in /etc/sysctl.d/91-custom.conf, strip all headers. The content should look like this:
net.core.rmem_max=8388608
net.core.wmem_max=8388608
vm.max_map_count=262144
Repackage the CSAR, update the Catalog, and upgrade the Network Function (NF).
If the CSAR cannot be immediately updated, modify the Nodepool Customization in the TCA UI:
Navigate to the TCA UI > Nodepool Customization.
Edit the sysctl injection configuration for the affected pool.
Remove INI-style headers: Delete [main], [modules], and [sysctl].
Remove Tuned directives: Delete lines such as summary=... and nf_conntrack_proto_gre=... that are not standard kernel parameters.
Save and re-apply the customization to the node pool.
The systemd-sysctl utility expects a simple configuration file. Placing a Tuned profile in /etc/sysctl.d/ causes a syntax error because the parser encounters the [ character, which is invalid in that context.