File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ Upgrading from a previous Deis release? See [Upgrading Deis](http://docs.deis.io
1919
2020## Install prerequisites
2121On your workstation:
22- * Install [ Vagrant] ( http://www.vagrantup.com/downloads.html ) and [ VirtualBox] ( https://www.virtualbox.org/wiki/Downloads )
23- * Install the fleetctl client: Install v0.4 .0 from the [ fleet GitHub page] ( https://github.com/coreos/fleet/releases ) .
22+ * Install [ Vagrant v1.6+ ] ( http://www.vagrantup.com/downloads.html ) and [ VirtualBox] ( https://www.virtualbox.org/wiki/Downloads )
23+ * Install the fleetctl client: Install v0.5 .0 from the [ fleet GitHub page] ( https://github.com/coreos/fleet/releases ) .
2424* Install the Docker client if you want to run Docker commands locally (optional)
2525
2626## Additional setup for a multi-node cluster
Original file line number Diff line number Diff line change 1212end
1313
1414Vagrant . configure ( "2" ) do |config |
15- config . vm . box = "coreos-343 .0.0"
16- config . vm . box_url = "http://storage.core-os.net/coreos/amd64-usr/343 .0.0/coreos_production_vagrant.box"
15+ config . vm . box = "coreos-349 .0.0"
16+ config . vm . box_url = "http://storage.core-os.net/coreos/amd64-usr/349 .0.0/coreos_production_vagrant.box"
1717
1818 config . vm . provider :vmware_fusion do |vb , override |
19- override . vm . box_url = "http://storage.core-os.net/coreos/amd64-usr/343 .0.0/coreos_production_vagrant_vmware_fusion.box"
19+ override . vm . box_url = "http://storage.core-os.net/coreos/amd64-usr/349 .0.0/coreos_production_vagrant_vmware_fusion.box"
2020 end
2121
2222 config . vm . provider :virtualbox do |vb , override |
Original file line number Diff line number Diff line change 44 "Mappings" : {
55 "RegionMap" : {
66 "ap-northeast-1" : {
7- "AMI" : "ami-03c08f02 "
7+ "AMI" : "ami-253b7324 "
88 },
99 "sa-east-1" : {
10- "AMI" : "ami-fb08a4e6 "
10+ "AMI" : "ami-8fab0492 "
1111 },
1212 "ap-southeast-2" : {
13- "AMI" : "ami-07b9dc3d "
13+ "AMI" : "ami-9f0c68a5 "
1414 },
1515 "ap-southeast-1" : {
16- "AMI" : "ami-0a732f58 "
16+ "AMI" : "ami-ac1b44fe "
1717 },
1818 "us-east-1" : {
19- "AMI" : "ami-908172f8 "
19+ "AMI" : "ami-820ff0ea "
2020 },
2121 "us-west-2" : {
22- "AMI" : "ami-3d42300d "
22+ "AMI" : "ami-7b8ff24b "
2323 },
2424 "us-west-1" : {
25- "AMI" : "ami-fa6463bf "
25+ "AMI" : "ami-ea5650af "
2626 },
2727 "eu-west-1" : {
28- "AMI" : "ami-8f30fff8 "
28+ "AMI" : "ami-a73bf2d0 "
2929 }
3030 }
3131 },
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ def attach(self, name):
197197[Service]
198198ExecStartPre=/usr/bin/docker pull {image}
199199ExecStartPre=/bin/sh -c "docker inspect {name} >/dev/null 2>&1 && docker rm -f {name} || true"
200- ExecStart=/bin/sh -c "port=$(docker inspect -f '{{{{range $k, $v := .config .ExposedPorts }}}}{{{{$k}}}}{{{{end}}}}' {image} | cut -d/ -f1) ; docker run --name {name} -P -e PORT=$port {image} {command}"
200+ ExecStart=/bin/sh -c "port=$(docker inspect -f '{{{{range $k, $v := .ContainerConfig .ExposedPorts }}}}{{{{$k}}}}{{{{end}}}}' {image} | cut -d/ -f1) ; docker run --name {name} -P -e PORT=$port {image} {command}"
201201ExecStop=/usr/bin/docker rm -f {name}
202202TimeoutStartSec=20m
203203"""
You can’t perform that action at this time.
0 commit comments