From 37311bc0d82daaf494de55d6ef5b5f5e4a604f68 Mon Sep 17 00:00:00 2001 From: Zachary Corleissen Date: Tue, 27 Jun 2017 16:41:01 -0700 Subject: [PATCH] Removed -fs from troubleshooting command (#4177) * Removed -fs from troubleshooting command * Add YAML file for configmaps in concepts * Add new topic for configmaps in concepts * Add configuration entry for understanding configmaps * Move Understanding Configmaps to a separate concept file * Revert "Move Understanding Configmaps to a separate concept file" This reverts commit 71bd80d7bccd090d0aa1829ae9e4db6cc4dc590c. * Revert "Add configuration entry for understanding configmaps" This reverts commit c27fc13f56453dff6e6b8b8f1f9641cbad8ace53. * Revert "Add new topic for configmaps in concepts" This reverts commit 3d535f59170a4b5cb290975871f167217484e7ab. * Revert "Add YAML file for configmaps in concepts" This reverts commit 8ecabd6d106647631819441be8bf7e834f0dbb54. --- docs/tasks/administer-cluster/configure-upgrade-etcd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/administer-cluster/configure-upgrade-etcd.md b/docs/tasks/administer-cluster/configure-upgrade-etcd.md index a72aae3f08ba7..b4ede41ddac1a 100644 --- a/docs/tasks/administer-cluster/configure-upgrade-etcd.md +++ b/docs/tasks/administer-cluster/configure-upgrade-etcd.md @@ -35,7 +35,7 @@ see _some doc_. Performance and stability of the cluster is sensitive to network and disk IO. Any resource starvation can lead to heartbeat timeout, causing instability of the cluster. An unstable etcd indicates that no leader is elected. Under such circumstances, a cluster cannot make any changes to its current state, which implies no new pods can be scheduled. -* Keeping stable etcd clusters is critical to the stability of Kubernetes clusters. Therefore, run etcd clusters on dedicated machines or isolated environments for [guaranteed resource requirements](https://github.com/coreos/etcd/blob/master/Documentation/op-guide/hardware.md#hardware-recommendations). +* Keeping stable etcd clusters is critical to the stability of Kubernetes clusters. Therefore, run etcd clusters on dedicated machines or isolated environments for [guaranteed resource requirements](https://github.com/coreos/etcd/blob/master/Documentation/op-guide/hardware.md#hardware-recommendations). ## Resource requirements @@ -403,5 +403,5 @@ test key. On your master VM (or somewhere with firewalls configured such that you can talk to your cluster's etcd), try: ```shell -curl -fs -X PUT "http://${host}:${port}/v2/keys/_test" +curl -X PUT "http://${host}:${port}/v2/keys/_test" ```