Failure when adding Vulnerability Advisor (VA) node

A failure occurs when you try to add a VA node.

Symptoms

A failure occurs when you run the following command to add a VA node:

docker run --rm -t -e LICENSE=accept --net=host -v \
$(pwd):/installer/cluster ibmcom/icp-inception-$(uname -m | 'sed s/x86_64/amd64/g'):3.1.1-ee va -l \
ip_address_vanode1,ip_address_vanode2

The following error appears:

ERROR! Unable to retrieve file contents
Could not find or access '/installer/playbook/plays/storage-va.yaml' on the Ansible Controller.
If you are using a module and expect the file to exist on the remote, see the remote_src option

Resolving the problem

Issue the following commands to work around the problem:

sudo docker run -it --net=host -e LICENSE=accept -v $(pwd):/installer/cluster ibmcom/icp-inception-$(uname -m | 'sed s/x86_64/amd64/g'):3.1.1-ee bash
sed -i '/storage/d' playbook/va.yaml
./installer.sh va -l <ip_address_vanode1,ip_address_vanode2>
exit