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 <mark.beierl@canonical.com>
diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh
index ef3ee9c..213db75 100755
--- a/installers/full_install_osm.sh
+++ b/installers/full_install_osm.sh
@@ -852,6 +852,7 @@
 #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
 }