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

Commit 24a30f5

Browse files
authored
Merge pull request #185 from aaronlevy/v1.4.6
V1.4.6
2 parents 2cd4570 + f3f348e commit 24a30f5

File tree

123 files changed

+3034
-11600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+3034
-11600
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,10 @@ conformance-%: clean all
3939
@sleep 30 # Give addons a little time to start
4040
@cd hack/$*-node && ./conformance-test.sh
4141

42-
#TODO(aaron): Prompt because this is destructive
4342
#TODO(aaron): the k8s.io/client-go upstream package is a symlink with relative path. Making note because we change symlink path.
4443
# This will naively try and create a vendor dir from a k8s release
4544
# USE: make vendor VENDOR_VERSION=vX.Y.Z
46-
VENDOR_VERSION = v1.4.5+coreos.0
45+
VENDOR_VERSION = v1.4.6+coreos.0
4746
vendor:
4847
@echo "Creating k8s vendor for: $(VENDOR_VERSION)"
4948
@rm -rf vendor

hack/multi-node/user-data.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ coreos:
2626
[Service]
2727
EnvironmentFile=/etc/environment
2828
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
29-
Environment=KUBELET_VERSION=v1.4.5_coreos.0
29+
Environment=KUBELET_VERSION=v1.4.6_coreos.0
3030
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests
3131
ExecStartPre=/bin/mkdir -p /srv/kubernetes/manifests
3232
ExecStartPre=/bin/mkdir -p /etc/kubernetes/checkpoint-secrets

hack/quickstart/init-master.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ if [ "${REMOTE_HOST}" != "local" ]; then
111111

112112
# Copy self to remote host so script can be executed in "local" mode
113113
scp -i ${IDENT} -P ${REMOTE_PORT} ${SSH_OPTS} ${BASH_SOURCE[0]} core@${REMOTE_HOST}:/home/core/init-master.sh
114-
ssh -i ${IDENT} -p ${REMOTE_PORT} ${SSH_OPTS} core@${REMOTE_HOST} "sudo /home/core/init-master.sh local"
114+
ssh -i ${IDENT} -p ${REMOTE_PORT} ${SSH_OPTS} core@${REMOTE_HOST} "sudo BOOTKUBE_REPO=${BOOTKUBE_REPO} BOOTKUBE_VERSION=${BOOTKUBE_VERSION} /home/core/init-master.sh local"
115115

116116
# Copy assets from remote host to a local directory. These can be used to launch additional nodes & contain TLS assets
117117
mkdir ${CLUSTER_DIR}

hack/single-node/user-data.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ coreos:
2727
[Service]
2828
EnvironmentFile=/etc/environment
2929
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
30-
Environment=KUBELET_VERSION=v1.4.5_coreos.0
30+
Environment=KUBELET_VERSION=v1.4.6_coreos.0
3131
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests
3232
ExecStartPre=/bin/mkdir -p /srv/kubernetes/manifests
3333
ExecStartPre=/bin/mkdir -p /etc/kubernetes/checkpoint-secrets

hack/tests/conformance-gce.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ set -euo pipefail
1010
# - rkt is available on the host
1111
#
1212
# REQUIRED ENV VARS:
13-
# - $BUILD_ROOT: environment variable is set and contains a checkout of bootkube at $BUILD_ROOT/bootkube
14-
# - $KEY_FILE: environment variable is set as path to GCE service account keyfile
13+
# - $BUILD_ROOT: contains a checkout of bootkube at $BUILD_ROOT/bootkube
14+
# - $KEY_FILE: path to GCE service account keyfile
1515
#
1616
# OPTIONAL ENV VARS:
17-
# - $WORKER_COUNT: number of worker machines to launch. Default 4
1817
# - $BOOTKUBE_REPO: container repo to use to launch bootkube. Default to value in quickstart/init-master.sh
1918
# - $BOOTKUBE_VERSION: container version to use to launch bootkube. Default to value in quickstart/init-master.sh
2019
# - $COREOS_VERSION: CoreOS image version.
@@ -28,10 +27,10 @@ set -euo pipefail
2827
# - Use the quickstart init-worker.sh script to join node to kubernetes cluster
2928
# - Run conformance tests against the launched cluster
3029
#
31-
WORKER_COUNT=4
3230
BOOTKUBE_REPO=${BOOTKUBE_REPO:-}
3331
BOOTKUBE_VERSION=${BOOTKUBE_VERSION:-}
3432
COREOS_IMAGE=${COREOS_IMAGE:-'https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1122-2-0-v20160906'}
33+
WORKER_COUNT=4
3534

3635
function cleanup {
3736
gcloud compute instances delete --quiet --zone us-central1-a bootkube-ci-m1 || true
@@ -106,5 +105,6 @@ else
106105
"--mount volume=keyfile,target=/build/keyfile " \
107106
)
108107

109-
sudo rkt run --insecure-options=image ${RKT_OPTS} docker://golang:1.6.3 --exec /bin/bash -- -c "IN_CONTAINER=true /build/bootkube/hack/tests/$(basename $0)"
108+
sudo rkt run --insecure-options=image ${RKT_OPTS} docker://golang:1.6.3 --exec /bin/bash -- -c \
109+
"IN_CONTAINER=true BOOTKUBE_REPO=${BOOTKUBE_REPO} BOOTKUBE_VERSION=${BOOTKUBE_VERSION} COREOS_IMAGE=${COREOS_IMAGE} /build/bootkube/hack/tests/$(basename $0)"
110110
fi

hack/tests/conformance-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33

44
CONFORMANCE_REPO=${CONFORMANCE_REPO:-github.com/coreos/kubernetes}
5-
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.4.5+coreos.0}
5+
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.4.6+coreos.0}
66

77
usage() {
88
echo "USAGE:"

pkg/asset/internal/templates.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
spec:
3535
containers:
3636
- name: kubelet
37-
image: quay.io/coreos/hyperkube:v1.4.5_coreos.0
37+
image: quay.io/coreos/hyperkube:v1.4.6_coreos.0
3838
command:
3939
- /nsenter
4040
- --target=1
@@ -124,7 +124,7 @@ spec:
124124
hostNetwork: true
125125
containers:
126126
- name: kube-apiserver
127-
image: quay.io/coreos/hyperkube:v1.4.5_coreos.0
127+
image: quay.io/coreos/hyperkube:v1.4.6_coreos.0
128128
command:
129129
- /hyperkube
130130
- apiserver
@@ -206,7 +206,7 @@ spec:
206206
spec:
207207
containers:
208208
- name: kube-controller-manager
209-
image: quay.io/coreos/hyperkube:v1.4.5_coreos.0
209+
image: quay.io/coreos/hyperkube:v1.4.6_coreos.0
210210
command:
211211
- ./hyperkube
212212
- controller-manager
@@ -244,7 +244,7 @@ spec:
244244
spec:
245245
containers:
246246
- name: kube-scheduler
247-
image: quay.io/coreos/hyperkube:v1.4.5_coreos.0
247+
image: quay.io/coreos/hyperkube:v1.4.6_coreos.0
248248
command:
249249
- ./hyperkube
250250
- scheduler
@@ -266,7 +266,7 @@ spec:
266266
hostNetwork: true
267267
containers:
268268
- name: kube-proxy
269-
image: quay.io/coreos/hyperkube:v1.4.5_coreos.0
269+
image: quay.io/coreos/hyperkube:v1.4.6_coreos.0
270270
command:
271271
- /hyperkube
272272
- proxy

vendor/github.com/coreos/etcd/auth/store.go

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/coreos/etcd/etcdserver/server.go

Lines changed: 7 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/coreos/etcd/mvcc/kvstore.go

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)