8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
46 lines
1.7 KiB
Bash
46 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
# Copyright 2015 The Kubernetes Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
# A library of helper functions for Jessie.
|
|
|
|
source "${KUBE_ROOT}/cluster/aws/common/common.sh"
|
|
|
|
SSH_USER=admin
|
|
|
|
# Detects the AMI to use for jessie (considering the region)
|
|
#
|
|
# Vars set:
|
|
# AWS_IMAGE
|
|
function detect-jessie-image () {
|
|
if [[ -z "${AWS_IMAGE-}" ]]; then
|
|
# These images are built using the imagebuilder tool, in the kube-deploy github repo
|
|
# https://github.com/kubernetes/kube-deploy/tree/master/imagebuilder
|
|
|
|
# 282335181503: images published by kope.io
|
|
aws_account="282335181503"
|
|
# TODO: we could use a tag for the latest image, instead of bumping it every time
|
|
# e.g. family = k8s-1.3-debian-jessie-amd64-hvm-ebs latest/1.3=true
|
|
if [[ -z "${AWS_IMAGE_NAME:-}" ]]; then
|
|
AWS_IMAGE_NAME="k8s-1.3-debian-jessie-amd64-hvm-ebs-2016-06-18"
|
|
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
|
|
echo "Please specify AWS_IMAGE directly (image ${AWS_IMAGE_NAME} not found in region ${AWS_REGION})"
|
|
exit 1
|
|
fi
|
|
fi
|
|
}
|