diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-05-06 23:17:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-06 23:17:45 +0000 |
commit | 3d8e9a41d55cd862e9963e8c561e80f9ec09d484 (patch) | |
tree | b5560bc54e041b77ad9e8362b3487b9b8a7bce59 /kud/hosting_providers/containerized | |
parent | 30ef50b4bea5c1d883c935100f07915883847b66 (diff) | |
parent | cc10b9aff3fd16df62c0655ec1626624ad2e2fc0 (diff) |
Merge "add cmk in KuD"
Diffstat (limited to 'kud/hosting_providers/containerized')
-rwxr-xr-x | kud/hosting_providers/containerized/installer.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kud/hosting_providers/containerized/installer.sh b/kud/hosting_providers/containerized/installer.sh index 8739ca23..afea0b5a 100755 --- a/kud/hosting_providers/containerized/installer.sh +++ b/kud/hosting_providers/containerized/installer.sh @@ -119,7 +119,7 @@ function install_addons { ansible-playbook $verbose -i \ $kud_inventory $kud_playbooks/configure-kud.yml | \ tee $cluster_log/setup-kud.log - for addon in ${KUD_ADDONS:-virtlet ovn4nfv nfd sriov $plugins_name}; do + for addon in ${KUD_ADDONS:-virtlet ovn4nfv nfd sriov cmk $plugins_name}; do echo "Deploying $addon using configure-$addon.yml playbook.." ansible-playbook $verbose -i \ $kud_inventory $kud_playbooks/configure-${addon}.yml | \ @@ -128,7 +128,7 @@ function install_addons { echo "Run the test cases if testing_enabled is set to true." if [[ "${testing_enabled}" == "true" ]]; then - for addon in ${KUD_ADDONS:-virtlet ovn4nfv nfd sriov $plugins_name}; do + for addon in ${KUD_ADDONS:-virtlet ovn4nfv nfd sriov cmk $plugins_name}; do pushd $kud_tests bash ${addon}.sh popd |