From fce57824ce6019f726b4df42548c826fd1c141a2 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Tue, 21 Mar 2017 17:44:35 -0700 Subject: [PATCH] Apply typo fixes from #2791 (#2949) * Apply typo fixes from #2791 * remove style typos --- docs/getting-started-guides/kargo.md | 4 ---- docs/getting-started-guides/kops.md | 4 ---- docs/getting-started-guides/kubeadm.md | 4 ---- .../declarative-object-management-configuration.md | 2 +- .../imperative-object-management-configuration.md | 2 +- 5 files changed, 2 insertions(+), 14 deletions(-) diff --git a/docs/getting-started-guides/kargo.md b/docs/getting-started-guides/kargo.md index 5e36713f5a..f314870a78 100644 --- a/docs/getting-started-guides/kargo.md +++ b/docs/getting-started-guides/kargo.md @@ -2,10 +2,6 @@ title: Installing Kubernetes On-premise/Cloud Providers with Kargo --- - - ## Overview This quickstart helps to install a Kubernetes cluster hosted diff --git a/docs/getting-started-guides/kops.md b/docs/getting-started-guides/kops.md index 0b2381dd18..e2e5a952ac 100644 --- a/docs/getting-started-guides/kops.md +++ b/docs/getting-started-guides/kops.md @@ -2,10 +2,6 @@ title: Installing Kubernetes on AWS with kops --- - - ## Overview This quickstart shows you how to easily install a Kubernetes cluster on AWS. diff --git a/docs/getting-started-guides/kubeadm.md b/docs/getting-started-guides/kubeadm.md index a45c2f1319..b8c72cadee 100644 --- a/docs/getting-started-guides/kubeadm.md +++ b/docs/getting-started-guides/kubeadm.md @@ -7,10 +7,6 @@ assignees: title: Installing Kubernetes on Linux with kubeadm --- - - ## Overview This quickstart shows you how to easily install a secure Kubernetes cluster on machines running Ubuntu 16.04, CentOS 7 or HypriotOS v1.0.1+. diff --git a/docs/tutorials/object-management-kubectl/declarative-object-management-configuration.md b/docs/tutorials/object-management-kubectl/declarative-object-management-configuration.md index f0e1fea561..02ab4e485b 100644 --- a/docs/tutorials/object-management-kubectl/declarative-object-management-configuration.md +++ b/docs/tutorials/object-management-kubectl/declarative-object-management-configuration.md @@ -383,7 +383,7 @@ The `kubectl apply` command writes the contents of the configuration file to the `kubectl.kubernetes.io/last-applied-configuration` annotation. This is used to identify fields that have been removed from the configuration file and need to be cleared from the live configuration. Here are the steps used -to caluculate which fields should be deleted or set: +to calculate which fields should be deleted or set: 1. Calculate the fields to delete. These are the fields present in `last-applied-configuration` and missing from the configuration file. 2. Calculate the fields to add or set. These are the fields present in the configuration file whose values don't match the live configuration. diff --git a/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md b/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md index 196d26fa8a..72196b9fd9 100644 --- a/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md +++ b/docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md @@ -62,7 +62,7 @@ The `create`, `replace`, and `delete` commands work well when each object's configuration is fully defined and recorded in its configuration file. However when a live object is updated, and the updates are not merged into its configuration file, the updates will be lost the next time a `replace` -is executed. This is can happen if a controller, such as +is executed. This can happen if a controller, such as a HorizontalPodAutoscaler, makes updates directly to a live object. Here's an example: