Skip to content

Commit 1d19f2b

Browse files
Matthew Fishercarmstrong
authored andcommitted
chore(contrib): bump coreos to v349.0.0
Still waiting on Rackspace, as they're still on v338.0.0 as of this commit.
1 parent b93df9a commit 1d19f2b

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Upgrading from a previous Deis release? See [Upgrading Deis](http://docs.deis.io
1919

2020
## Install prerequisites
2121
On 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

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ else
1212
end
1313

1414
Vagrant.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|

contrib/ec2/deis.template

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
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
},

controller/scheduler/coreos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def attach(self, name):
197197
[Service]
198198
ExecStartPre=/usr/bin/docker pull {image}
199199
ExecStartPre=/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}"
201201
ExecStop=/usr/bin/docker rm -f {name}
202202
TimeoutStartSec=20m
203203
"""

0 commit comments

Comments
 (0)