Skip to content

Commit 4ca1c43

Browse files
committed
Updated EC2 AMIs for v0.4.0, fixes #458
1 parent c1721ac commit 4ca1c43

3 files changed

Lines changed: 17 additions & 17 deletions

File tree

contrib/ec2/provision-ec2-controller.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,21 @@ region=$1
4545
# see contrib/prepare-ubuntu-ami.sh for instructions
4646
# on creating your own deis-optmized AMIs
4747
if [ "$region" == "ap-northeast-1" ]; then
48-
image=ami-e31478e2
48+
image=ami-5d432d5c
4949
elif [ "$region" == "ap-southeast-1" ]; then
50-
image=ami-24421576
50+
image=ami-b4c493e6
5151
elif [ "$region" == "ap-southeast-2" ]; then
52-
image=ami-6338a759
52+
image=ami-d59d03ef
5353
elif [ "$region" == "eu-west-1" ]; then
54-
image=ami-6ed73c19
54+
image=ami-ce30c5b9
5555
elif [ "$region" == "sa-east-1" ]; then
56-
image=ami-510eaf4c
56+
image=ami-61b1117c
5757
elif [ "$region" == "us-east-1" ]; then
58-
image=ami-cb3a0fa2
58+
image=ami-8df9c9e4
5959
elif [ "$region" == "us-west-1" ]; then
60-
image=ami-d82d1e9d
60+
image=ami-62477527
6161
elif [ "$region" == "us-west-2" ]; then
62-
image=ami-5299fe62
62+
image=ami-ea6001da
6363
else
6464
echo "Cannot find AMI for region: $region"
6565
exit 1

contrib/vagrant/prepare-ubuntu-box.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ find /var/log -type f | xargs rm
8181
rm -f /var/lib/dhcp3/*
8282

8383
# Make sure Udev doesn't block our network, see: http://6.ptmc.org/?p=164
84-
rm /etc/udev/rules.d/70-persistent-net.rules
84+
rm -rf /etc/udev/rules.d/70-persistent-net.rules
8585
mkdir /etc/udev/rules.d/70-persistent-net.rules
8686
rm -rf /dev/.udev/
8787
rm /lib/udev/rules.d/75-persistent-net-generator.rules

provider/ec2.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
# Deis-optimized EC2 amis -- with 3.8 kernel, chef 11 deps,
1818
# and large docker images (e.g. buildstep) pre-installed
1919
IMAGE_MAP = {
20-
'ap-northeast-1': 'ami-e31478e2',
21-
'ap-southeast-1': 'ami-24421576',
22-
'ap-southeast-2': 'ami-6338a759',
23-
'eu-west-1': 'ami-6ed73c19',
24-
'sa-east-1': 'ami-510eaf4c',
25-
'us-east-1': 'ami-cb3a0fa2',
26-
'us-west-1': 'ami-d82d1e9d',
27-
'us-west-2': 'ami-5299fe62',
20+
'ap-northeast-1': 'ami-5d432d5c',
21+
'ap-southeast-1': 'ami-b4c493e6',
22+
'ap-southeast-2': 'ami-d59d03ef',
23+
'eu-west-1': 'ami-ce30c5b9',
24+
'sa-east-1': 'ami-61b1117c',
25+
'us-east-1': 'ami-8df9c9e4',
26+
'us-west-1': 'ami-62477527',
27+
'us-west-2': 'ami-ea6001da',
2828
}
2929

3030

0 commit comments

Comments
 (0)