diff options
author | r.kuralamudhan <kuralamudhan.ramakrishnan@intel.com> | 2020-05-14 23:04:44 -0700 |
---|---|---|
committer | r.kuralamudhan <kuralamudhan.ramakrishnan@intel.com> | 2020-05-14 23:04:44 -0700 |
commit | c77850a75eee9f3df2e194521e59728572bc47c2 (patch) | |
tree | eaee9fbe1aacba0e373a2d68b8a0710a4a988e9c | |
parent | 22a56b401408ad2d3f0d77c245cc2c69df83e456 (diff) |
remove the outdated SDWAN testing
Issue-ID: MULTICLOUD-1071
Signed-off-by: Kuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>
Change-Id: Ia3818ee16393d8e8b2d465d354ce777192baca9e
-rwxr-xr-x | kud/hosting_providers/containerized/installer.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/kud/hosting_providers/containerized/installer.sh b/kud/hosting_providers/containerized/installer.sh index 11c57b41..fe9d1e9d 100755 --- a/kud/hosting_providers/containerized/installer.sh +++ b/kud/hosting_providers/containerized/installer.sh @@ -152,21 +152,6 @@ function install_plugin { fi } -# install_controllers() - Install ONAP Multicloud Kubernetes controllers -function install_controllers { - echo "Installing multicloud/k8s onap4k8s controllers" - if [[ "${testing_enabled}" == "true" ]]; then - echo "Test controllers installation" - for controller_test in sdwan; do - pushd $kud_tests/$controller_test - ansible-playbook $verbose -i \ - $kud_inventory ${controller_test}.yml | \ - tee $cluster_log/test-${controller_test}.log - popd - done - fi -} - # _print_kubernetes_info() - Prints the login Kubernetes information function _print_kubernetes_info { if ! $(kubectl version &>/dev/null); then @@ -227,8 +212,6 @@ function install_cluster { if ${KUD_PLUGIN_ENABLED:-false}; then install_plugin echo "installed the install_plugin" - install_controllers - echo "installed controllers" fi _print_kubernetes_info } |