Feature 11077: new option to install specific components with a specific tag from CICD
Change-Id: Id49c65d3f22e123d7e4ad3c83cf93df2281ea6ad
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/installers/install_osm.sh b/installers/install_osm.sh
index 870de5c..f007bd9 100755
--- a/installers/install_osm.sh
+++ b/installers/install_osm.sh
@@ -42,7 +42,8 @@
echo -e " -K: Specifies the name of the controller to use - The controller must be already bootstrapped"
echo -e " -d <docker registry URL> use docker registry URL instead of dockerhub"
echo -e " -p <docker proxy URL> set docker proxy URL as part of docker CE configuration"
- echo -e " -T <docker tag> specify docker tag for the modules specified with option -m"
+ echo -e " -m <MODULE>: module to test a specific docker image (NG-UI, NBI, LCM, RO, MON) (can be used several times)"
+ echo -e " -T <docker tag> use specific docker tag for the module specified with option -m"
echo -e " --debug: debug mode"
echo -e " --uninstall: uninstall OSM: remove the containers and delete NAT rules"
}
@@ -100,7 +101,7 @@
[ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
}
-while getopts ":a:c:e:r:k:u:R:D:s:t:U:d:p:T:M:G:O:-: hy" o; do
+while getopts ":a:c:e:r:k:u:R:D:s:t:U:d:p:m:T:M:G:O:-: hy" o; do
case "${o}" in
D)
DEVOPS_PATH="${OPTARG}"