From 243e97c94cc7f213d418511e8e9814252f5cba65 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Wed, 16 Mar 2016 07:51:21 -0400 Subject: [PATCH] AWS kube-up: Bump jessie image Also switch to a dedicated AWS account for serving this image. --- cluster/aws/jessie/util.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cluster/aws/jessie/util.sh b/cluster/aws/jessie/util.sh index c17341b5fac..fe9690b1e62 100644 --- a/cluster/aws/jessie/util.sh +++ b/cluster/aws/jessie/util.sh @@ -28,10 +28,11 @@ SSH_USER=admin function detect-jessie-image () { if [[ -z "${AWS_IMAGE-}" ]]; then # TODO: publish on a k8s AWS account - aws_account="721322707521" - # TODO: we could use tags for the image + aws_account="282335181503" + # TODO: we could use a tag for the latest image, instead of bumping it every time + # e.g. family = k8s-1.2-debian-jessie-amd64-hvm-ebs latest/1.2=true if [[ -z "${AWS_IMAGE_NAME:-}" ]]; then - AWS_IMAGE_NAME="k8s-1.2-debian-jessie-amd64-hvm-2016-03-05-ebs" + AWS_IMAGE_NAME="k8s-1.2-debian-jessie-amd64-hvm-2016-03-16-ebs" fi AWS_IMAGE=`aws ec2 describe-images --owner ${aws_account} --filters Name=name,Values=${AWS_IMAGE_NAME} --query Images[].ImageId --output text` if [[ -z "${AWS_IMAGE-}" ]]; then