plugin_deployment_name=plugin-deployment
plugin_service_name=plugin-service
-# popule_CSAR_containers_vFW() - This function creates the content of CSAR file
+# populate_CSAR_containers_vFW() - This function creates the content of CSAR file
# required for vFirewal using only containers
-function popule_CSAR_containers_vFW {
+function populate_CSAR_containers_vFW {
local csar_id=$1
_checks_args $csar_id
popd
}
-# popule_CSAR_vms_containers_vFW() - This function creates the content of CSAR file
+# populate_CSAR_vms_containers_vFW() - This function creates the content of CSAR file
# required for vFirewal using an hybrid combination between virtual machines and
# cotainers
-function popule_CSAR_vms_containers_vFW {
+function populate_CSAR_vms_containers_vFW {
local csar_id=$1
ssh_key=$(cat $HOME/.ssh/id_rsa.pub)
popd
}
-# popule_CSAR_vms_vFW() - This function creates the content of CSAR file
+# populate_CSAR_vms_vFW() - This function creates the content of CSAR file
# required for vFirewal using only virtual machines
-function popule_CSAR_vms_vFW {
+function populate_CSAR_vms_vFW {
local csar_id=$1
ssh_key=$(cat $HOME/.ssh/id_rsa.pub)
popd
}
-# popule_CSAR_multus() - This function creates the content of CSAR file
+# populate_CSAR_multus() - This function creates the content of CSAR file
# required for testing Multus feature
-function popule_CSAR_multus {
+function populate_CSAR_multus {
local csar_id=$1
_checks_args $csar_id
popd
}
-# popule_CSAR_virtlet() - This function creates the content of CSAR file
+# populate_CSAR_virtlet() - This function creates the content of CSAR file
# required for testing Virtlet feature
-function popule_CSAR_virtlet {
+function populate_CSAR_virtlet {
local csar_id=$1
_checks_args $csar_id
if [[ ! -f $HOME/.ssh/id_rsa.pub ]]; then
echo -e "\n\n\n" | ssh-keygen -t rsa -N ""
fi
-popule_CSAR_vms_vFW $csar_id
+populate_CSAR_vms_vFW $csar_id
pushd ${CSAR_DIR}/${csar_id}
for resource in unprotected-private-net-cidr-network protected-private-net-cidr-network onap-private-net-cidr-network; do
if [[ ! -f $HOME/.ssh/id_rsa.pub ]]; then
echo -e "\n\n\n" | ssh-keygen -t rsa -N ""
fi
-popule_CSAR_vms_containers_vFW $csar_id
+populate_CSAR_vms_containers_vFW $csar_id
pushd ${CSAR_DIR}/${csar_id}
for resource in unprotected-private-net-cidr-network protected-private-net-cidr-network onap-private-net-cidr-network sink-service sink-ingress; do