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

Commit 82e4707

Browse files
authored
Merge pull request #81 from aaronlevy/1.3.0
Bump version v1.3.0_coreos.1
2 parents 12e3877 + 501aef6 commit 82e4707

File tree

213 files changed

+5904
-3951
lines changed

Some content is hidden

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

213 files changed

+5904
-3951
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ conformance-%: clean all
5050

5151
# This will naively try and create a vendor dir from a k8s release
5252
# USE: make vendor VENDOR_VERSION=vX.Y.Z
53-
VENDOR_VERSION = v1.3.0-beta.2
53+
VENDOR_VERSION = v1.3.0
5454
vendor: vendor-$(VENDOR_VERSION)
5555

5656
vendor-$(VENDOR_VERSION):

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.3.0-beta.2_coreos.0
29+
Environment=KUBELET_VERSION=v1.3.0_coreos.1
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/kubelet.master

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ After=docker.service etcd2.service flanneld.service
44

55
[Service]
66
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
7-
Environment=KUBELET_VERSION=v1.3.0-beta.2_coreos.0
7+
Environment=KUBELET_VERSION=v1.3.0_coreos.1
88
EnvironmentFile=/etc/environment
99

1010
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests

hack/quickstart/kubelet.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ After=docker.service flanneld.service
44

55
[Service]
66
Environment=KUBELET_ACI=quay.io/coreos/hyperkube
7-
Environment=KUBELET_VERSION=v1.3.0-beta.2_coreos.0
7+
Environment=KUBELET_VERSION=v1.3.0_coreos.1
88
EnvironmentFile=/etc/environment
99

1010
ExecStartPre=/bin/mkdir -p /etc/kubernetes/manifests

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.3.0-beta.2_coreos.0
30+
Environment=KUBELET_VERSION=v1.3.0_coreos.1
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-test.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ set -euo pipefail
33

44
CHECK_NODE_COUNT=${CHECK_NODE_COUNT:-true}
55
CONFORMANCE_REPO=${CONFORMANCE_REPO:-github.com/coreos/kubernetes}
6-
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.3.0-beta.2+coreos.0}
6+
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.3.0+coreos.1}
7+
TEST_ARGS=${TEST_ARGS:-"--ginkgo.focus='\[Conformance\]' --ginkgo.skip='\[Flaky\]|\[Feature:.+\]'"}
78

89
usage() {
910
echo "USAGE:"
@@ -34,7 +35,7 @@ RKT_OPTS=$(echo \
3435
# Init steps necessary to run conformance in docker://golang:1.6.2 container
3536
INIT="apt-get update && apt-get install -y rsync"
3637

37-
TEST_FLAGS="-v --test -check_version_skew=false -check_node_count=${CHECK_NODE_COUNT} --test_args=\"ginkgo.focus='\[Conformance\]'\""
38+
TEST_FLAGS="-v --test -check_version_skew=false -check_node_count=${CHECK_NODE_COUNT} --test_args=\"${TEST_ARGS}\""
3839

3940
CONFORMANCE=$(echo \
4041
"cd /go/src/k8s.io/kubernetes && " \

pkg/asset/internal/templates.go

Lines changed: 572 additions & 573 deletions
Large diffs are not rendered by default.

pkg/asset/templates/kube-apiserver.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ metadata:
55
namespace: kube-system
66
labels:
77
k8s-app: kube-apiserver
8-
version: v1.3.0-beta.2
8+
version: v1.3.0_coreos.1
99
spec:
1010
template:
1111
metadata:
1212
labels:
1313
k8s-app: kube-apiserver
14-
version: v1.3.0-beta.2
14+
version: v1.3.0_coreos.1
1515
spec:
1616
nodeSelector:
1717
master: "true"
@@ -25,7 +25,7 @@ spec:
2525
- mountPath: /etc/kubernetes/manifests
2626
name: etc-k8s-manifests
2727
- name: kube-apiserver
28-
image: quay.io/coreos/hyperkube:v1.3.0-beta.2_coreos.0
28+
image: quay.io/coreos/hyperkube:v1.3.0_coreos.1
2929
command:
3030
- /hyperkube
3131
- apiserver

pkg/asset/templates/kube-controller-manager.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ metadata:
55
namespace: kube-system
66
labels:
77
k8s-app: kube-controller-manager
8-
version: v1.3.0-beta.2
8+
version: v1.3.0_coreos.1
99
spec:
1010
template:
1111
metadata:
1212
labels:
1313
k8s-app: kube-controller-manager
14-
version: v1.3.0-beta.2
14+
version: v1.3.0_coreos.1
1515
spec:
1616
containers:
1717
- name: kube-controller-manager
18-
image: quay.io/coreos/hyperkube:v1.3.0-beta.2_coreos.0
18+
image: quay.io/coreos/hyperkube:v1.3.0_coreos.1
1919
command:
2020
- ./hyperkube
2121
- controller-manager

pkg/asset/templates/kube-proxy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ metadata:
55
namespace: kube-system
66
labels:
77
k8s_app: kube-proxy
8-
version: v1.3.0-beta.2
8+
version: v1.3.0_coreos.1
99
spec:
1010
template:
1111
metadata:
1212
labels:
1313
k8s_app: kube-proxy
14-
version: v1.3.0-beta.2
14+
version: v1.3.0_coreos.1
1515
spec:
1616
hostNetwork: true
1717
containers:
1818
- name: kube-proxy
19-
image: quay.io/coreos/hyperkube:v1.3.0-beta.2_coreos.0
19+
image: quay.io/coreos/hyperkube:v1.3.0_coreos.0
2020
command:
2121
- /hyperkube
2222
- proxy

0 commit comments

Comments
 (0)