Updates of function test for f-release

New test profile for f-release
New test profile for onap jakarta release
Updated applicable testcases for new profiles
Testcase for helm manager
Integration of helm, helm manager and chartmuseum
Updated README files

Issue-ID: NONRTRIC-690

Signed-off-by: BjornMagnussonXA <bjorn.magnusson@est.tech>
Change-Id: Iaf177231bbfb3411595d2665149bc1e773e0f911
diff --git a/test/common/prodstub_api_functions.sh b/test/common/prodstub_api_functions.sh
index f792d69..b3e3dea 100644
--- a/test/common/prodstub_api_functions.sh
+++ b/test/common/prodstub_api_functions.sh
@@ -119,6 +119,12 @@
 	fi
 }
 
+# Check application requirements, e.g. helm, the the test needs. Exit 1 if req not satisfied
+# args: -
+__PRODSTUB_test_requirements() {
+	:
+}
+
 #######################################################
 
 # Set http as the protocol to use for all communication to the Prod stub sim
@@ -192,13 +198,13 @@
 		retcode_p=$?
 
 		if [ $retcode_i -ne 0 ] && [ $retcode_p -ne 0 ]; then
-			echo -e $RED"The $ICS_APP_NAME app is not included as managed nor prestarted in this test script"$ERED
-			echo -e $RED"The $ICS_APP_NAME will not be started"$ERED
+			echo -e $RED"The $PROD_STUB_APP_NAME app is not included as managed nor prestarted in this test script"$ERED
+			echo -e $RED"The $PROD_STUB_APP_NAME will not be started"$ERED
 			exit
 		fi
 		if [ $retcode_i -eq 0 ] && [ $retcode_p -eq 0 ]; then
-			echo -e $RED"The $ICS_APP_NAME app is included both as managed and prestarted in this test script"$ERED
-			echo -e $RED"The $ICS_APP_NAME will not be started"$ERED
+			echo -e $RED"The $PROD_STUB_APP_NAME app is included both as managed and prestarted in this test script"$ERED
+			echo -e $RED"The $PROD_STUB_APP_NAME will not be started"$ERED
 			exit
 		fi