From c4ef1d4b814ae8d2e55af0c8815b80ab9c70d6b0 Mon Sep 17 00:00:00 2001 From: Karen Bradshaw Date: Wed, 3 Feb 2021 14:28:28 -0500 Subject: [PATCH] Apply suggestions from code review Thanks for the review. Good suggestions! Co-authored-by: Celeste Horgan --- content/en/docs/reference/tools.md | 5 ++--- .../tasks/administer-cluster/limit-storage-consumption.md | 2 +- content/en/docs/tutorials/kubernetes-basics/_index.html | 2 +- content/en/docs/tutorials/stateless-application/guestbook.md | 3 +-- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/content/en/docs/reference/tools.md b/content/en/docs/reference/tools.md index f5cd81a338..41d8ef4d1c 100644 --- a/content/en/docs/reference/tools.md +++ b/content/en/docs/reference/tools.md @@ -20,8 +20,8 @@ Kubernetes contains several built-in tools to help you work with the Kubernetes ## Minikube -[`minikube`](https://minikube.sigs.k8s.io/docs/) is a tool that helps -run a single-node Kubernetes cluster locally on your workstation for +[`minikube`](https://minikube.sigs.k8s.io/docs/) is a tool that +runs a single-node Kubernetes cluster locally on your workstation for development and testing purposes. ## Dashboard @@ -51,4 +51,3 @@ Use Kompose to: * Translate a Docker Compose file into Kubernetes objects * Go from local Docker development to managing your application via Kubernetes * Convert v1 or v2 Docker Compose `yaml` files or [Distributed Application Bundles](https://docs.docker.com/compose/bundles/) - diff --git a/content/en/docs/tasks/administer-cluster/limit-storage-consumption.md b/content/en/docs/tasks/administer-cluster/limit-storage-consumption.md index 4b4381326e..c982a9cb7c 100644 --- a/content/en/docs/tasks/administer-cluster/limit-storage-consumption.md +++ b/content/en/docs/tasks/administer-cluster/limit-storage-consumption.md @@ -5,7 +5,7 @@ content_type: task -This example demonstrates an straightforward way to limit the amount of storage consumed in a namespace. +This example demonstrates how to limit the amount of storage consumed in a namespace. The following resources are used in the demonstration: [ResourceQuota](/docs/concepts/policy/resource-quotas/), [LimitRange](/docs/tasks/administer-cluster/manage-resources/memory-default-namespace/), diff --git a/content/en/docs/tutorials/kubernetes-basics/_index.html b/content/en/docs/tutorials/kubernetes-basics/_index.html index 918ff7402c..afec8f26a8 100644 --- a/content/en/docs/tutorials/kubernetes-basics/_index.html +++ b/content/en/docs/tutorials/kubernetes-basics/_index.html @@ -41,7 +41,7 @@ card:

What can Kubernetes do for you?

-

With modern web services, users expect applications to be available 24/7, and developers expect to deploy new versions of those applications several times a day. Containerization helps package software to serve these goals, enabling applications to be released and updated quickly without downtime. Kubernetes helps you make sure those containerized applications run where and when you want, and helps them find the resources and tools they need to work. Kubernetes is a production-ready, open source platform designed with Google's accumulated experience in container orchestration, combined with best-of-breed ideas from the community.

+

With modern web services, users expect applications to be available 24/7, and developers expect to deploy new versions of those applications several times a day. Containerization helps package software to serve these goals, enabling applications to be released and updated without downtime. Kubernetes helps you make sure those containerized applications run where and when you want, and helps them find the resources and tools they need to work. Kubernetes is a production-ready, open source platform designed with Google's accumulated experience in container orchestration, combined with best-of-breed ideas from the community.

diff --git a/content/en/docs/tutorials/stateless-application/guestbook.md b/content/en/docs/tutorials/stateless-application/guestbook.md index 38b638ed1f..c591e09cea 100644 --- a/content/en/docs/tutorials/stateless-application/guestbook.md +++ b/content/en/docs/tutorials/stateless-application/guestbook.md @@ -272,7 +272,7 @@ If you deployed the `frontend-service.yaml` manifest with type: `LoadBalancer` y ## Scale the Web Frontend -Scaling up or down is effortless because your servers are defined as a Service that uses a Deployment controller. +You can scale up or down as needed because your servers are defined as a Service that uses a Deployment controller. 1. Run the following command to scale up the number of frontend Pods: @@ -370,4 +370,3 @@ Deleting the Deployments and Services also deletes any running Pods. Use labels * Use Kubernetes to create a blog using [Persistent Volumes for MySQL and Wordpress](/docs/tutorials/stateful-application/mysql-wordpress-persistent-volume/#visit-your-new-wordpress-blog) * Read more about [connecting applications](/docs/concepts/services-networking/connect-applications-service/) * Read more about [Managing Resources](/docs/concepts/cluster-administration/manage-deployment/#using-labels-effectively) -