From f7eefb25d54e4f4481004760f95f3e819e783ef1 Mon Sep 17 00:00:00 2001 From: beierlm Date: Wed, 21 Apr 2021 09:12:13 -0400 Subject: [PATCH] Attempt to remove swap Attempts to persist the deactivation of swap across reboots. Note: this can still be overridden by external mechanisms such as cloud-init Fixes Bug 1062 Change-Id: I4b78191da63a1528bfe56d2c3e9a33342b86af21 Signed-off-by: beierlm --- installers/full_install_osm.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index ef3ee9cf..213db756 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -852,6 +852,7 @@ function install_kube() { #initializes kubernetes control plane function init_kubeadm() { sudo swapoff -a + sudo sed -i.bak '/.*none.*swap/s/^\(.*\)$/#\1/g' /etc/fstab sudo kubeadm init --config $1 sleep 5 } -- 2.25.1