From b3133a1c1627ca9da835d30099a37fc7a1a7450b Mon Sep 17 00:00:00 2001 From: Andy Zheng Date: Mon, 2 Nov 2015 15:45:44 -0800 Subject: [PATCH] Update docker version in trusty node to 1.8.3 This change is for using the latest qualified docker in trusty nodes. --- cluster/gce/trusty/node.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/gce/trusty/node.yaml b/cluster/gce/trusty/node.yaml index 2069d910de..1f37c98c85 100644 --- a/cluster/gce/trusty/node.yaml +++ b/cluster/gce/trusty/node.yaml @@ -118,8 +118,8 @@ script # Install docker and brctl if they are not in the image. if ! which docker > /dev/null; then echo "Do not find docker. Install it." - # We should install the docker that passes qualification. At present, it is version 1.7.1. - curl -sSL https://get.docker.com/ubuntu/ | DOCKER_VERSION=1.7.1 sh + # We should install the latest qualified docker, which is version 1.8.3 at present. + curl -sSL https://get.docker.com/ | DOCKER_VERSION=1.8.3 sh fi if ! which brctl > /dev/null; then echo "Do not find brctl. Install it."