Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AWS kube-up: move to Docker 1.11.2 #27676

Merged
merged 3 commits into from
Jun 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
File renamed without changes.
182 changes: 0 additions & 182 deletions cluster/aws/coreos/node.yaml

This file was deleted.

55 changes: 0 additions & 55 deletions cluster/aws/coreos/util.sh

This file was deleted.

11 changes: 7 additions & 4 deletions cluster/aws/jessie/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# A library of helper functions for Jessie.

source "${KUBE_ROOT}/cluster/aws/trusty/common.sh"
source "${KUBE_ROOT}/cluster/aws/common/common.sh"

SSH_USER=admin

Expand All @@ -27,12 +27,15 @@ SSH_USER=admin
# AWS_IMAGE
function detect-jessie-image () {
if [[ -z "${AWS_IMAGE-}" ]]; then
# TODO: publish on a k8s AWS account
# 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.2-debian-jessie-amd64-hvm-ebs latest/1.2=true
# 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.2-debian-jessie-amd64-hvm-2016-03-16-ebs"
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
Expand Down
4 changes: 4 additions & 0 deletions cluster/aws/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ Supported options:
debian-LTS team.
* `wily`: Ubuntu Wily. Wily is not an LTS release, and OS support is due to
end in July 2016.

No longer supported as of 1.3:

* `vivid`: Ubuntu Vivid. Vivid OS support ended in early February 2016.
Docker no longer provides packages for vivid.

Given the support situation, we recommend using Debian Jessie. In Kubernetes
1.3 Ubuntu should have their next LTS release out, so we should be able to
Expand Down
22 changes: 0 additions & 22 deletions cluster/aws/trusty/util.sh

This file was deleted.