From b086b3fba94174e31c21ce21ce4d5736ef59c56d Mon Sep 17 00:00:00 2001 From: mattmceuen Date: Sun, 4 Jun 2017 20:16:52 -0500 Subject: [PATCH] Fix ceph instructions in multinode guide. Removed inappropriate quotes from around kube_version in the controller manager sed command, and clarified version info for the controller manager. Change-Id: Ied241a2d36524951942171630647411e2d76644c Closes-Bug: #1695021 --- doc/source/install/multinode.rst | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/source/install/multinode.rst b/doc/source/install/multinode.rst index 4ba4f7ecce..f824877d4f 100644 --- a/doc/source/install/multinode.rst +++ b/doc/source/install/multinode.rst @@ -199,12 +199,17 @@ repository to do so. To make these changes, export your Kubernetes version, and edit the ``image`` line of your ``kube-controller-manager`` json manifest on your -Kubernetes Master: +Kubernetes Master using the commands below. +Please be sure to select the version that matches your Kubernetes installation +(available versions +`here `__), +noting that ``kube-controller-manager`` v1.6.1 is also backwards compatible with +Kubernetes v1.6.0. :: export kube_version=v1.6.2 - sudo sed -i "s|gcr.io/google_containers/kube-controller-manager-amd64:'$kube_version'|quay.io/attcomdev/kube-controller-manager:'$kube_version'|g" /etc/kubernetes/manifests/kube-controller-manager.yaml + sudo sed -i "s|gcr.io/google_containers/kube-controller-manager-amd64:$kube_version|quay.io/attcomdev/kube-controller-manager:$kube_version|g" /etc/kubernetes/manifests/kube-controller-manager.yaml Now you will want to ``restart`` your Kubernetes master server to continue.