Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.

Commit

Permalink
Merge pull request #852 from aaronlevy/v1.5.4
Browse files Browse the repository at this point in the history
Bump k8s version v1.5.4
  • Loading branch information
aaronlevy committed Mar 13, 2017
2 parents 7d86f3c + caa0b45 commit a266fe6
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions Documentation/configure-kubectl.md
Expand Up @@ -15,13 +15,13 @@ Download `kubectl` from the Kubernetes release artifact site with the `curl` too
The linux `kubectl` binary can be fetched with a command like:

```sh
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.3/bin/linux/amd64/kubectl
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/linux/amd64/kubectl
```

On an OS X workstation, replace `linux` in the URL above with `darwin`:

```sh
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.3/bin/darwin/amd64/kubectl
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/darwin/amd64/kubectl
```

After downloading the binary, ensure it is executable and move it into your `PATH`:
Expand Down
10 changes: 5 additions & 5 deletions Documentation/deploy-master.md
Expand Up @@ -123,7 +123,7 @@ Note that the kubelet running on a master node may log repeated attempts to post

* Replace `${ADVERTISE_IP}` with this node's publicly routable IP.
* Replace `${DNS_SERVICE_IP}`
* Replace `${K8S_VER}` This will map to: `quay.io/coreos/hyperkube:${K8S_VER}` release, e.g. `v1.5.3_coreos.0`.
* Replace `${K8S_VER}` This will map to: `quay.io/coreos/hyperkube:${K8S_VER}` release, e.g. `v1.5.4_coreos.0`.
* If using Calico for network policy
- Replace `${NETWORK_PLUGIN}` with `cni`
- Add the following to `RKT_RUN_ARGS=`
Expand Down Expand Up @@ -196,7 +196,7 @@ spec:
hostNetwork: true
containers:
- name: kube-apiserver
image: quay.io/coreos/hyperkube:v1.5.3_coreos.0
image: quay.io/coreos/hyperkube:v1.5.4_coreos.0
command:
- /hyperkube
- apiserver
Expand Down Expand Up @@ -263,7 +263,7 @@ spec:
hostNetwork: true
containers:
- name: kube-proxy
image: quay.io/coreos/hyperkube:v1.5.3_coreos.0
image: quay.io/coreos/hyperkube:v1.5.4_coreos.0
command:
- /hyperkube
- proxy
Expand Down Expand Up @@ -302,7 +302,7 @@ spec:
hostNetwork: true
containers:
- name: kube-controller-manager
image: quay.io/coreos/hyperkube:v1.5.3_coreos.0
image: quay.io/coreos/hyperkube:v1.5.4_coreos.0
command:
- /hyperkube
- controller-manager
Expand Down Expand Up @@ -354,7 +354,7 @@ spec:
hostNetwork: true
containers:
- name: kube-scheduler
image: quay.io/coreos/hyperkube:v1.5.3_coreos.0
image: quay.io/coreos/hyperkube:v1.5.4_coreos.0
command:
- /hyperkube
- scheduler
Expand Down
4 changes: 2 additions & 2 deletions Documentation/deploy-workers.md
Expand Up @@ -105,7 +105,7 @@ Create `/etc/systemd/system/kubelet.service` and substitute the following variab
* Replace `${MASTER_HOST}`
* Replace `${ADVERTISE_IP}` with this node's publicly routable IP.
* Replace `${DNS_SERVICE_IP}`
* Replace `${K8S_VER}` This will map to: `quay.io/coreos/hyperkube:${K8S_VER}` release, e.g. `v1.5.3_coreos.0`.
* Replace `${K8S_VER}` This will map to: `quay.io/coreos/hyperkube:${K8S_VER}` release, e.g. `v1.5.4_coreos.0`.
* If using Calico for network policy
- Replace `${NETWORK_PLUGIN}` with `cni`
- Add the following to `RKT_RUN_ARGS=`
Expand Down Expand Up @@ -175,7 +175,7 @@ spec:
hostNetwork: true
containers:
- name: kube-proxy
image: quay.io/coreos/hyperkube:v1.5.3_coreos.0
image: quay.io/coreos/hyperkube:v1.5.4_coreos.0
command:
- /hyperkube
- proxy
Expand Down
10 changes: 5 additions & 5 deletions Documentation/kubelet-wrapper.md
Expand Up @@ -19,7 +19,7 @@ An example systemd kubelet.service file which takes advantage of the kubelet-wra

```ini
[Service]
Environment=KUBELET_IMAGE_TAG=v1.5.3_coreos.0
Environment=KUBELET_IMAGE_TAG=v1.5.4_coreos.0
Environment="RKT_RUN_ARGS=--uuid-file-save=/var/run/kubelet-pod.uuid"
ExecStartPre=-/usr/bin/rkt rm --uuid-file=/var/run/kubelet-pod.uuid
ExecStart=/usr/lib/coreos/kubelet-wrapper \
Expand All @@ -40,7 +40,7 @@ Mount the host's `/etc/resolv.conf` file directly into the container in order to

```ini
[Service]
Environment=KUBELET_IMAGE_TAG=v1.5.3_coreos.0
Environment=KUBELET_IMAGE_TAG=v1.5.4_coreos.0
Environment="RKT_RUN_ARGS=--volume=resolv,kind=host,source=/etc/resolv.conf \
--mount volume=resolv,target=/etc/resolv.conf \
--uuid-file-save=/var/run/kubelet-pod.uuid"
Expand All @@ -58,7 +58,7 @@ Pods running in your cluster can reference remote storage volumes located on an

```ini
[Service]
Environment=KUBELET_IMAGE_TAG=v1.5.3_coreos.0
Environment=KUBELET_IMAGE_TAG=v1.5.4_coreos.0
Environment="RKT_RUN_ARGS=--volume iscsiadm,kind=host,source=/usr/sbin/iscsiadm \
--mount volume=iscsiadm,target=/usr/sbin/iscsiadm \
--uuid-file-save=/var/run/kubelet-pod.uuid"
Expand All @@ -76,7 +76,7 @@ Pods using the [rbd volume plugin][rbd-example] to consume data from ceph must e

```ini
[Service]
Environment=KUBELET_IMAGE_TAG=v1.5.3_coreos.0
Environment=KUBELET_IMAGE_TAG=v1.5.4_coreos.0
Environment="RKT_RUN_ARGS=--volume modprobe,kind=host,source=/usr/sbin/modprobe \
--mount volume=modprobe,target=/usr/sbin/modprobe \
--volume lib-modules,kind=host,source=/lib/modules \
Expand Down Expand Up @@ -111,7 +111,7 @@ For example:

```ini
[Service]
Environment=KUBELET_IMAGE_TAG=v1.5.3_coreos.0
Environment=KUBELET_IMAGE_TAG=v1.5.4_coreos.0
...
ExecStart=/opt/bin/kubelet-wrapper \
--api-servers=http://127.0.0.1:8080 \
Expand Down
4 changes: 2 additions & 2 deletions Documentation/kubernetes-on-vagrant-single.md
Expand Up @@ -19,13 +19,13 @@ Navigate to the [Vagrant downloads page][vagrant-downloads] and grab the appropr
The linux `kubectl` binary can be fetched with a command like:

```sh
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.3/bin/linux/amd64/kubectl
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/linux/amd64/kubectl
```

On an OS X workstation, replace `linux` in the URL above with `darwin`:

```sh
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.3/bin/darwin/amd64/kubectl
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/darwin/amd64/kubectl
```

After downloading the binary, ensure it is executable and move it into your PATH:
Expand Down
4 changes: 2 additions & 2 deletions Documentation/kubernetes-on-vagrant.md
Expand Up @@ -18,13 +18,13 @@ Navigate to the [Vagrant downloads page][vagrant-downloads] and grab the appropr
The linux `kubectl` binary can be fetched with a command like:

```sh
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.3/bin/linux/amd64/kubectl
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/linux/amd64/kubectl
```

On an OS X workstation, replace `linux` in the URL above with `darwin`:

```sh
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.3/bin/darwin/amd64/kubectl
$ curl -O https://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/darwin/amd64/kubectl
```

After downloading the binary, ensure it is executable and move it into your PATH:
Expand Down
2 changes: 1 addition & 1 deletion Documentation/kubernetes-upgrade.md
Expand Up @@ -15,7 +15,7 @@ For example, modifying the `KUBELET_IMAGE_TAG` environment variable in the follo
**/etc/systemd/system/kubelet.service**

```
Environment=KUBELET_IMAGE_TAG=v1.5.3_coreos.0
Environment=KUBELET_IMAGE_TAG=v1.5.4_coreos.0
ExecStart=/usr/lib/coreos/kubelet-wrapper \
--api-servers=https://master [...]
```
Expand Down
4 changes: 2 additions & 2 deletions contrib/bump-version.sh
Expand Up @@ -6,11 +6,11 @@

if [ $# -ne 1 ] || [ `expr $1 : ".*_.*"` == 0 ]; then
echo "USAGE: $0 <target-version>"
echo " example: $0 'v1.5.3_coreos.0'"
echo " example: $0 'v1.5.4_coreos.0'"
exit 1
fi

CURRENT_VERSION=${CURRENT_VERSION:-"v1.5.3_coreos.0"}
CURRENT_VERSION=${CURRENT_VERSION:-"v1.5.4_coreos.0"}
TARGET_VERSION=${1}

CURRENT_VERSION_BASE=${CURRENT_VERSION%%_*}
Expand Down
2 changes: 1 addition & 1 deletion contrib/conformance-test.sh
Expand Up @@ -3,7 +3,7 @@ set -euo pipefail

CHECK_NODE_COUNT=${CHECK_NODE_COUNT:-true}
CONFORMANCE_REPO=${CONFORMANCE_REPO:-github.com/coreos/kubernetes}
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.5.3+coreos.0}
CONFORMANCE_VERSION=${CONFORMANCE_VERSION:-v1.5.4+coreos.0}
SSH_OPTS=${SSH_OPTS:-}

usage() {
Expand Down
2 changes: 1 addition & 1 deletion multi-node/generic/controller-install.sh
Expand Up @@ -5,7 +5,7 @@ set -e
export ETCD_ENDPOINTS=

# Specify the version (vX.Y.Z) of Kubernetes assets to deploy
export K8S_VER=v1.5.3_coreos.0
export K8S_VER=v1.5.4_coreos.0

# Hyperkube image repository to use.
export HYPERKUBE_IMAGE_REPO=quay.io/coreos/hyperkube
Expand Down
2 changes: 1 addition & 1 deletion multi-node/generic/worker-install.sh
Expand Up @@ -10,7 +10,7 @@ export ETCD_ENDPOINTS=
export CONTROLLER_ENDPOINT=

# Specify the version (vX.Y.Z) of Kubernetes assets to deploy
export K8S_VER=v1.5.3_coreos.0
export K8S_VER=v1.5.4_coreos.0

# Hyperkube image repository to use.
export HYPERKUBE_IMAGE_REPO=quay.io/coreos/hyperkube
Expand Down
2 changes: 1 addition & 1 deletion single-node/user-data
Expand Up @@ -5,7 +5,7 @@ set -e
export ETCD_ENDPOINTS="http://127.0.0.1:2379"

# Specify the version (vX.Y.Z) of Kubernetes assets to deploy
export K8S_VER=v1.5.3_coreos.0
export K8S_VER=v1.5.4_coreos.0

# Hyperkube image repository to use.
export HYPERKUBE_IMAGE_REPO=quay.io/coreos/hyperkube
Expand Down

0 comments on commit a266fe6

Please sign in to comment.