From 50bc79efb529101dad5000daff285ba8f7aa2bd7 Mon Sep 17 00:00:00 2001 From: Misty Linville Date: Tue, 26 Jun 2018 16:22:52 -0700 Subject: [PATCH] Sweep for doubled words (#9252) --- content/en/docs/concepts/workloads/pods/pod-lifecycle.md | 2 +- .../en/docs/reference/command-line-tools-reference/kubelet.md | 2 +- .../docs/tasks/administer-cluster/setup-ha-etcd-with-kubeadm.md | 2 +- .../configure-pod-container/translate-compose-kubernetes.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/docs/concepts/workloads/pods/pod-lifecycle.md b/content/en/docs/concepts/workloads/pods/pod-lifecycle.md index 231de62682..e3d29f30d3 100644 --- a/content/en/docs/concepts/workloads/pods/pod-lifecycle.md +++ b/content/en/docs/concepts/workloads/pods/pod-lifecycle.md @@ -86,7 +86,7 @@ the Pod: kubectl get pod my-application -o json | jq .status.conditions ``` -Now let's say that that query has yielded this JSON: +If that query returned this example JSON: ```json [ diff --git a/content/en/docs/reference/command-line-tools-reference/kubelet.md b/content/en/docs/reference/command-line-tools-reference/kubelet.md index 3a70a9abd3..bfb1412d8f 100644 --- a/content/en/docs/reference/command-line-tools-reference/kubelet.md +++ b/content/en/docs/reference/command-line-tools-reference/kubelet.md @@ -100,7 +100,7 @@ kubelet --bootstrap-checkpoint-path string - Path to to the directory where the checkpoints are stored + Path to the directory where the checkpoints are stored --bootstrap-kubeconfig string diff --git a/content/en/docs/tasks/administer-cluster/setup-ha-etcd-with-kubeadm.md b/content/en/docs/tasks/administer-cluster/setup-ha-etcd-with-kubeadm.md index 6b93e91c14..7e2a1314fe 100644 --- a/content/en/docs/tasks/administer-cluster/setup-ha-etcd-with-kubeadm.md +++ b/content/en/docs/tasks/administer-cluster/setup-ha-etcd-with-kubeadm.md @@ -9,7 +9,7 @@ content_template: templates/task Kubeadm defaults to running a single member etcd cluster in a static pod managed by the kubelet on the control plane node. This is not a highly available setup -as the the etcd cluster contains only one member and cannot sustain any members +as the etcd cluster contains only one member and cannot sustain any members becoming unavailable. This task walks through the process of creating a highly available etcd cluster of three members that can be used as an external etcd when using kubeadm to set up a kubernetes cluster. diff --git a/content/en/docs/tasks/configure-pod-container/translate-compose-kubernetes.md b/content/en/docs/tasks/configure-pod-container/translate-compose-kubernetes.md index de377395e4..4b6b3c3042 100644 --- a/content/en/docs/tasks/configure-pod-container/translate-compose-kubernetes.md +++ b/content/en/docs/tasks/configure-pod-container/translate-compose-kubernetes.md @@ -410,7 +410,7 @@ services: Using `kompose up` with a `build` key: -```sh +```none $ kompose up INFO Build key detected. Attempting to build and push image 'docker.io/foo/bar' INFO Building image 'docker.io/foo/bar' from directory 'build'