Remove Swarm classic

This commit is contained in:
Jérôme Petazzoni
2017-10-02 13:33:58 +02:00
parent 36f512a3d3
commit b0a34aa106

View File

@@ -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)