summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com>2017-11-03 12:54:41 -0700
committerGitHub <noreply@github.com>2017-11-03 12:54:41 -0700
commit7bed24ef55eae0b6f3efcfc15a7cbc7ba835469a (patch)
treea7d1392517f77b38bc86532b1c87de5d4c144716
parentc16187ab0d1d902896a18c85b15619b782489c29 (diff)
parentc29b0c997a678d71b7ec10426047a12d9c8d2a43 (diff)
Merge pull request #1331 from warmchang/multicluster
Automatic merge from submit-queue. Fix some errors in control-plane-resilience.md
-rw-r--r--contributors/design-proposals/multicluster/control-plane-resilience.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/contributors/design-proposals/multicluster/control-plane-resilience.md b/contributors/design-proposals/multicluster/control-plane-resilience.md
index 1e0a3baf..7b30f588 100644
--- a/contributors/design-proposals/multicluster/control-plane-resilience.md
+++ b/contributors/design-proposals/multicluster/control-plane-resilience.md
@@ -194,14 +194,13 @@ to do three things:
<li>allocate a new node (not necessary if running etcd as a pod, in
which case specific measures are required to prevent user pods from
interfering with system pods, for example using node selectors as
-described in <A HREF="),
+described in <A HREF="https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector">nodeSelector</A>),
<li>start an etcd replica on that new node, and
<li>have the new replica recover the etcd state.
</ol>
In the case of local disk (which fails in concert with the machine), the etcd
state must be recovered from the other replicas. This is called
-<A HREF="https://github.com/coreos/etcd/blob/master/Documentation/runtime-configuration.md#add-a-new-member">
-dynamic member addition</A>.
+<A HREF="https://github.com/coreos/etcd/blob/master/Documentation/op-guide/runtime-configuration.md#add-a-new-member">dynamic member addition</A>.
In the case of remote persistent disk, the etcd state can be recovered by
attaching the remote persistent disk to the replacement node, thus the state is
@@ -210,8 +209,7 @@ recoverable even if all other replicas are down.
There are also significant performance differences between local disks and remote
persistent disks. For example, the
<A HREF="https://cloud.google.com/compute/docs/disks/#comparison_of_disk_types">
-sustained throughput local disks in GCE is approximately 20x that of remote
-disks</A>.
+sustained throughput local disks in GCE is approximately 20x that of remote disks</A>.
Hence we suggest that self-healing be provided by remotely mounted persistent
disks in non-performance critical, single-zone cloud deployments. For