Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Commit b97a7b5

Browse files
authored
Merge pull request #166 from mumoshu/k8s-1.5.1
Kubernetes v1.5.1
2 parents db732a8 + de32c05 commit b97a7b5

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func NewDefaultCluster() *Cluster {
7070
ClusterName: "kubernetes",
7171
VPCCIDR: "10.0.0.0/16",
7272
ReleaseChannel: "stable",
73-
K8sVer: "v1.4.6_coreos.0",
73+
K8sVer: "v1.5.1_coreos.0",
7474
HyperkubeImageRepo: "quay.io/coreos/hyperkube",
7575
AWSCliImageRepo: "quay.io/coreos/awscli",
7676
AWSCliTag: "master",

config/templates/cloud-config-controller

+1
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,7 @@ write_files:
552552
{{ end }}
553553
- --advertise-address=$private_ipv4
554554
- --admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,ResourceQuota
555+
- --anonymous-auth=false
555556
- --tls-cert-file=/etc/kubernetes/ssl/apiserver.pem
556557
- --tls-private-key-file=/etc/kubernetes/ssl/apiserver-key.pem
557558
- --client-ca-file=/etc/kubernetes/ssl/ca.pem

config/templates/cluster.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ controller:
192192
#tlsCertDurationDays: 365
193193

194194
# Version of hyperkube image to use. This is the tag for the hyperkube image repository.
195-
# kubernetesVersion: v1.4.6_coreos.0
195+
# kubernetesVersion: v1.5.1_coreos.0
196196

197197
# Hyperkube image repository to use.
198198
# hyperkubeImageRepo: quay.io/coreos/hyperkube

contrib/bump-version

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
if [ $# -ne 1 ] || [ `expr $1 : ".*_.*"` == 0 ]; then
88
echo "USAGE: $0 <target-version>"
9-
echo " example: $0 'v1.4.6_coreos.0'"
9+
echo " example: $0 'v1.5.1_coreos.0'"
1010
exit 1
1111
fi
1212

13-
CURRENT_VERSION=${CURRENT_VERSION:-"v1.4.6_coreos.0"}
13+
CURRENT_VERSION=${CURRENT_VERSION:-"v1.5.1_coreos.0"}
1414
TARGET_VERSION=${1}
1515

1616
CURRENT_VERSION_BASE=${CURRENT_VERSION%%_*}
@@ -34,4 +34,4 @@ for i in "${TRACKED[@]}"; do
3434
sed -i "s/${CURRENT_VERSION_SEMVER}/${TARGET_VERSION_SEMVER}/g" $i
3535
sed -i "s/${CURRENT_VERSION_BASE}/${TARGET_VERSION_BASE}/g" $i
3636
fi
37-
done
37+
done

e2e/kubernetes/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.7.1
22

3-
ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.4.6+coreos.0}
3+
ARG KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.5.1+coreos.0}
44

55
RUN apt-get update && \
66
apt-get install -y rsync && \

e2e/kubernetes/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
KUBERNETES_VERSION ?= v1.4.6+coreos.0
1+
KUBERNETES_VERSION ?= v1.5.1+coreos.0
22
DOCKER_REPO ?=
33
DOCKER_TAG ?= $(DOCKER_REPO)kube-e2e:$(KUBERNETES_VERSION)
44
DOCKER_TAG_SANITIZED ?= $(shell echo $(DOCKER_TAG) | sed -e 's/+/_/')

e2e/kubernetes/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
`DOCKER_REPO=... make build publish` to build and then push the docker image with the latest, pre-built Kubernetes E2E test suite.

e2e/kubernetes/conformance.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ fi
2525

2626
FOCUS=${FOCUS:-\[Conformance\]}
2727

28-
go run hack/e2e.go -v --test -check_version_skew=false -check_node_count=true --test_args="--ginkgo.focus=$FOCUS"
28+
go run hack/e2e.go -v --test -check_version_skew=false --test_args="--ginkgo.focus=$FOCUS"

0 commit comments

Comments
 (0)