X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fbash%2Fk8s_setup.sh;h=d1d3a38454e6e9276bcda1b37fab57274631953b;hp=4128512f210d179aedaf2ba03ba12ba99dace9a4;hb=6da5a6920171682bd5bf6a77517bedfef91cbd0e;hpb=1bb5beef46104f8b5bfb844ace3633ed40fc3915 diff --git a/resources/libraries/bash/k8s_setup.sh b/resources/libraries/bash/k8s_setup.sh index 4128512f21..d1d3a38454 100755 --- a/resources/libraries/bash/k8s_setup.sh +++ b/resources/libraries/bash/k8s_setup.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2018 Cisco and/or its affiliates. +# Copyright (c) 2021 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -18,19 +18,8 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # Include source ${SCRIPT_DIR}/config/defaults -source ${SCRIPT_DIR}/shell/dpdk_utils.sh source ${SCRIPT_DIR}/shell/k8s_utils.sh -# Read configuration -while read line -do - if echo $line | grep -F = &>/dev/null - then - varname=$(echo "$line" | cut -d '=' -f 1) - cfg[$varname]=$(echo "$line" | cut -d '=' -f 2-) - fi -done < ${SCRIPT_DIR}/config/config - trap "k8s_utils.destroy" ERR case "$1" in @@ -44,7 +33,9 @@ case "$1" in # Revert any changes made to this host by 'kubeadm init' k8s_utils.destroy # Load kernel modules uio/uio_pci_generic - dpdk_utils.load_modules + sudo modprobe uio + sudo modprobe uio_pci_generic + sudo modprobe vfio_pci # Sets up the Kubernetes master k8s_utils.prepare "--pod-network-cidr=192.168.0.0/16" # Apply resources