Skip to content

Commit d68da05

Browse files
author
Gabriel Monroy
committed
Merge pull request #207 from opdemand/205-update-amis
Fixed #205 -- updated with fresher AMIs.
2 parents 8a6f44e + 29a3a09 commit d68da05

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

contrib/provision-ec2-controller.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ region=$1
2828
# see contrib/prepare-ubuntu-ami.sh for instructions
2929
# on creating your own deis-optmized AMIs
3030
if [ "$region" == "ap-northeast-1" ]; then
31-
image=ami-6da8356c
31+
image=ami-d95ac4d8
3232
elif [ "$region" == "ap-southeast-1" ]; then
33-
image=ami-a66f24f4
33+
image=ami-1823694a
3434
elif [ "$region" == "ap-southeast-2" ]; then
35-
image=ami-d5f66bef
35+
image=ami-e56af7df
3636
elif [ "$region" == "eu-west-1" ]; then
37-
image=ami-acbf5adb
37+
image=ami-7447a003
3838
elif [ "$region" == "sa-east-1" ]; then
39-
image=ami-f9fd5ae4
39+
image=ami-334bec2e
4040
elif [ "$region" == "us-east-1" ]; then
41-
image=ami-69f3bc00
41+
image=ami-493d6a20
4242
elif [ "$region" == "us-west-1" ]; then
43-
image=ami-f0695cb5
43+
image=ami-0e2b1f4b
4444
elif [ "$region" == "us-west-2" ]; then
45-
image=ami-ea1e82da
45+
image=ami-72e27c42
4646
else
4747
echo "Cannot find AMI for region: $region"
4848
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-6da8356c',
21-
'ap-southeast-1': 'ami-a66f24f4',
22-
'ap-southeast-2': 'ami-d5f66bef',
23-
'eu-west-1': 'ami-acbf5adb',
24-
'sa-east-1': 'ami-f9fd5ae4',
25-
'us-east-1': 'ami-69f3bc00',
26-
'us-west-1': 'ami-f0695cb5',
27-
'us-west-2': 'ami-ea1e82da',
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',
2828
}
2929

3030

0 commit comments

Comments
 (0)