Skip to content

Commit c0d6576

Browse files
committed
Fixed #234 -- refreshed EC2 AMI images.
1 parent 5fc6d3d commit c0d6576

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

contrib/ec2/provision-ec2-controller.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ region=$1
4242
# see contrib/prepare-ubuntu-ami.sh for instructions
4343
# on creating your own deis-optmized AMIs
4444
if [ "$region" == "ap-northeast-1" ]; then
45-
image=ami-d95ac4d8
45+
image=ami-0b45de0a
4646
elif [ "$region" == "ap-southeast-1" ]; then
47-
image=ami-1823694a
47+
image=ami-eaf9b3b8
4848
elif [ "$region" == "ap-southeast-2" ]; then
49-
image=ami-e56af7df
49+
image=ami-e9970bd3
5050
elif [ "$region" == "eu-west-1" ]; then
51-
image=ami-7447a003
51+
image=ami-c021c1b7
5252
elif [ "$region" == "sa-east-1" ]; then
53-
image=ami-334bec2e
53+
image=ami-b5da7ca8
5454
elif [ "$region" == "us-east-1" ]; then
55-
image=ami-493d6a20
55+
image=ami-a30b57ca
5656
elif [ "$region" == "us-west-1" ]; then
57-
image=ami-0e2b1f4b
57+
image=ami-30e3d475
5858
elif [ "$region" == "us-west-2" ]; then
59-
image=ami-72e27c42
59+
image=ami-ca63fafa
6060
else
6161
echo "Cannot find AMI for region: $region"
6262
exit 1

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-d95ac4d8',
21-
'ap-southeast-1': 'ami-1823694a',
22-
'ap-southeast-2': 'ami-e56af7df',
23-
'eu-west-1': 'ami-7447a003',
24-
'sa-east-1': 'ami-334bec2e',
25-
'us-east-1': 'ami-493d6a20',
26-
'us-west-1': 'ami-0e2b1f4b',
27-
'us-west-2': 'ami-72e27c42',
20+
'ap-northeast-1': 'ami-0b45de0a',
21+
'ap-southeast-1': 'ami-eaf9b3b8',
22+
'ap-southeast-2': 'ami-e9970bd3',
23+
'eu-west-1': 'ami-c021c1b7',
24+
'sa-east-1': 'ami-b5da7ca8',
25+
'us-east-1': 'ami-a30b57ca',
26+
'us-west-1': 'ami-30e3d475',
27+
'us-west-2': 'ami-ca63fafa',
2828
}
2929

3030

0 commit comments

Comments
 (0)