From b84e92a05a0862725c600f09cc0c70107fc8035f Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Fri, 3 Mar 2017 14:58:34 -0800 Subject: [PATCH] examples: Update self-hosted Kubernetes to v1.5.3 * Use kubernetes-incubator/bootkube v0.3.9 --- CHANGES.md | 2 +- Documentation/bootkube.md | 8 ++++---- examples/ignition/bootkube-controller.yaml | 2 +- scripts/get-bootkube | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 42af7e13..4cc8e4ac 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,7 @@ Notable changes between releases. ## Latest * Upgrade Kubernetes v1.5.2 (static) example clusters -* Upgrade Kubernetes v1.5.2 (self-hosted) example cluster +* Upgrade Kubernetes v1.5.3 (self-hosted) example cluster * Use etcd3 by default in all clusters (remove etcd2 clusters) ## v0.5.0 (2017-01-23) diff --git a/Documentation/bootkube.md b/Documentation/bootkube.md index 599a3236..84f880e2 100644 --- a/Documentation/bootkube.md +++ b/Documentation/bootkube.md @@ -1,7 +1,7 @@ # Self-Hosted Kubernetes -The self-hosted Kubernetes example provisions a 3 node "self-hosted" Kubernetes v1.5.2 cluster. On-host kubelets wait for an apiserver to become reachable, then yield to kubelet pods scheduled via daemonset. [bootkube](https://github.com/kubernetes-incubator/bootkube) is run on any controller to bootstrap a temporary apiserver which schedules control plane components as pods before exiting. An etcd cluster backs Kubernetes and coordinates CoreOS auto-updates (enabled for disk installs). +The self-hosted Kubernetes example provisions a 3 node "self-hosted" Kubernetes v1.5.3 cluster. On-host kubelets wait for an apiserver to become reachable, then yield to kubelet pods scheduled via daemonset. [bootkube](https://github.com/kubernetes-incubator/bootkube) is run on any controller to bootstrap a temporary apiserver which schedules control plane components as pods before exiting. An etcd cluster backs Kubernetes and coordinates CoreOS auto-updates (enabled for disk installs). ## Requirements @@ -12,13 +12,13 @@ Ensure that you've gone through the [matchbox with rkt](getting-started-rkt.md) * Create the example libvirt client VMs * `/etc/hosts` entries for `node[1-3].example.com` (or pass custom names to `k8s-certgen`) -Install [bootkube](https://github.com/kubernetes-incubator/bootkube/releases) v0.3.7 and add it somewhere on your PATH. +Install [bootkube](https://github.com/kubernetes-incubator/bootkube/releases) v0.3.9 and add it somewhere on your PATH. ```sh -$ wget https://github.com/kubernetes-incubator/bootkube/releases/download/v0.3.7/bootkube.tar.gz +$ wget https://github.com/kubernetes-incubator/bootkube/releases/download/v0.3.9/bootkube.tar.gz $ tar xzf bootkube.tar.gz $ ./bin/linux/bootkube version -Version: v0.3.7 +Version: v0.3.9 ``` ## Examples diff --git a/examples/ignition/bootkube-controller.yaml b/examples/ignition/bootkube-controller.yaml index 8b4fe777..c654012c 100644 --- a/examples/ignition/bootkube-controller.yaml +++ b/examples/ignition/bootkube-controller.yaml @@ -139,7 +139,7 @@ storage: # Wrapper for bootkube start set -e BOOTKUBE_ACI="${BOOTKUBE_ACI:-quay.io/coreos/bootkube}" - BOOTKUBE_VERSION="${BOOTKUBE_VERSION:-v0.3.7}" + BOOTKUBE_VERSION="${BOOTKUBE_VERSION:-v0.3.9}" BOOTKUBE_ASSETS="${BOOTKUBE_ASSETS:-/opt/bootkube/assets}" exec /usr/bin/rkt run \ --trust-keys-from-https \ diff --git a/scripts/get-bootkube b/scripts/get-bootkube index d9d856fd..1f7e6042 100755 --- a/scripts/get-bootkube +++ b/scripts/get-bootkube @@ -4,7 +4,7 @@ set -eu DEST=${1:-"bin"} -VERSION="v0.3.7" +VERSION="v0.3.9" URL="https://github.com/kubernetes-incubator/bootkube/releases/download/${VERSION}/bootkube.tar.gz"