summaryrefslogtreecommitdiffstats
path: root/kud/hosting_providers/containerized
diff options
context:
space:
mode:
authorTodd Malsbary <todd.malsbary@intel.com>2020-09-08 11:31:52 -0700
committerTodd Malsbary <todd.malsbary@intel.com>2020-09-23 14:51:43 -0700
commit6b6dc1bacd9914219794dcc3a033c6558c04092d (patch)
tree97ed370f89c0bda4d091f58f48fb3bb32c885ae7 /kud/hosting_providers/containerized
parentf1a368f93708ee0a27f0740e353408ab0f19e147 (diff)
Add plugin_fw.sh test for v2 and run as part of installer.
To deploy to multiple clusters, set the KUD_PLUGIN_FW_CLUSTERS environment variable to the following format (an array of cluster data objects): [ { "metadata": { "name": "NAME", "description": "DESCRIPTION", "userData1": "USER_DATA_1", "userData2": "USER_DATA_2" }, "file": "KUBECONFIG_PATH" }, { ... } ] Issue-ID: MULTICLOUD-1217 Signed-off-by: Todd Malsbary <todd.malsbary@intel.com> Change-Id: I4c80fbcef1162b441c4dfba4ce2bfd3ac419bc25
Diffstat (limited to 'kud/hosting_providers/containerized')
-rwxr-xr-xkud/hosting_providers/containerized/installer.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/kud/hosting_providers/containerized/installer.sh b/kud/hosting_providers/containerized/installer.sh
index 45608a57..ae16b1dd 100755
--- a/kud/hosting_providers/containerized/installer.sh
+++ b/kud/hosting_providers/containerized/installer.sh
@@ -138,6 +138,12 @@ function install_addons {
bash ${functional_test}.sh --external
done
;;
+ "emco" )
+ echo "Test the emco plugin installation"
+ for functional_test in plugin_fw_v2; do
+ bash ${functional_test}.sh --external
+ done
+ ;;
esac
popd
done