From b0a34aa106590a9e204a8f01c15ed0012854a771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Mon, 2 Oct 2017 13:33:58 +0200 Subject: [PATCH] Remove Swarm classic --- prepare-vms/scripts/postprep.rc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/prepare-vms/scripts/postprep.rc b/prepare-vms/scripts/postprep.rc index ff15715e..3f05dfe3 100755 --- a/prepare-vms/scripts/postprep.rc +++ b/prepare-vms/scripts/postprep.rc @@ -18,7 +18,6 @@ import yaml config = yaml.load(open("/tmp/settings.yaml")) COMPOSE_VERSION = config["compose_version"] MACHINE_VERSION = config["machine_version"] -SWARM_VERSION = config["swarm_version"] CLUSTER_SIZE = config["clustersize"] ENGINE_VERSION = config["engine_version"] @@ -149,10 +148,6 @@ system("sudo apt-get -qy install python-setuptools pssh apache2-utils httping ht ### (If we don't do this, Docker will not be responsive during the next step.) system("while ! sudo -u docker docker version ; do sleep 2; done") -### Install Swarm -#system("docker pull swarm:{}".format(SWARM_VERSION)) -#system("docker tag -f swarm:{} swarm".format(SWARM_VERSION)) - ### BEGIN CLUSTERING ### addresses = list(l.strip() for l in sys.stdin)