Skip to content

Commit 6fdba6a

Browse files
committed
Merge pull request #1064 from deis/coreos-324.2.0
chore(contrib/*): update to CoreOS 324.2.0
2 parents 47c5796 + ccdfc34 commit 6fdba6a

4 files changed

Lines changed: 12 additions & 23 deletions

File tree

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-324.1.0"
16-
config.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/324.1.0/coreos_production_vagrant.box"
15+
config.vm.box = "coreos-324.2.0"
16+
config.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/324.2.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/324.1.0/coreos_production_vagrant_vmware_fusion.box"
19+
override.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/324.2.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-836c2f82"
7+
"AMI" : "ami-25175a24"
88
},
99
"sa-east-1" : {
10-
"AMI" : "ami-43ab075e"
10+
"AMI" : "ami-b96fc3a4"
1111
},
1212
"ap-southeast-2" : {
13-
"AMI" : "ami-4ba53f71"
13+
"AMI" : "ami-792ab043"
1414
},
1515
"ap-southeast-1" : {
16-
"AMI" : "ami-946d30c6"
16+
"AMI" : "ami-58c9940a"
1717
},
1818
"us-east-1" : {
19-
"AMI" : "ami-3221c95a"
19+
"AMI" : "ami-8a53a6e2"
2020
},
2121
"us-west-2" : {
22-
"AMI" : "ami-a1c6b791"
22+
"AMI" : "ami-a7d1a197"
2323
},
2424
"us-west-1" : {
25-
"AMI" : "ami-3c080d79"
25+
"AMI" : "ami-debdb89b"
2626
},
2727
"eu-west-1" : {
28-
"AMI" : "ami-3f7ab948"
28+
"AMI" : "ami-1df4396a"
2929
}
3030
}
3131
},

contrib/rackspace/README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,6 @@ For more information, see [optimal etcd cluster size](https://github.com/coreos/
5353

5454
Deis clusters of less than 3 nodes are unsupported.
5555

56-
### Update CoreOS
57-
Due to image publishing limitations on Rackspace, CoreOS images on Rackspace are frequently out of date.
58-
Each machine needs to be updated. On each one, run:
59-
60-
```console
61-
$ sudo systemctl unmask update-engine && sudo systemctl start update-engine && sudo update_engine_client -update && sudo reboot
62-
```
63-
64-
Once the machine is rebooted, it should have a recent CoreOS version.
65-
6656
### Initialize the cluster
6757
Once the cluster is up, get the hostname of any of the machines from Rackspace, set
6858
FLEETCTL_TUNNEL, and issue a `make run` from the project root:

contrib/rackspace/provision-rackspace-cluster.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,9 @@ fi
3939

4040
i=1 ; while [[ $i -le $DEIS_NUM_INSTANCES ]] ; do \
4141
echo_yellow "Provisioning deis-$i..."
42-
supernova production boot --image 70210a69-081e-4a5e-b402-3cdbabfdcddd --flavor $FLAVOR --key-name $1 --user-data ../coreos/user-data --no-service-net --nic net-id=$NETWORK_ID --config-drive true deis-$i ; \
42+
supernova production boot --image 24614284-19a9-4348-bee3-a504d7094d1b --flavor $FLAVOR --key-name $1 --user-data ../coreos/user-data --no-service-net --nic net-id=$NETWORK_ID --config-drive true deis-$i ; \
4343
((i = i + 1)) ; \
4444
done
4545

4646
echo_green "Your Deis cluster has successfully deployed to Rackspace."
4747
echo_green "Please continue to follow the instructions in the README."
48-
echo_yellow "NOTE: For this release, you must also update CoreOS on these machines. See the README for details."

0 commit comments

Comments
 (0)