Skip to content

Commit 70b75e1

Browse files
authored
Merge pull request #22981 from shuuji3/en/replace-special-quote-with-normal-ones
Replace special quote characters with normal ones
2 parents 723b086 + c6a9612 commit 70b75e1

File tree

41 files changed

+100
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+100
-100
lines changed

content/en/docs/concepts/architecture/controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ the {{< glossary_tooltip term_id="kube-controller-manager" >}}. These
140140
built-in controllers provide important core behaviors.
141141

142142
The Deployment controller and Job controller are examples of controllers that
143-
come as part of Kubernetes itself (built-in controllers).
143+
come as part of Kubernetes itself ("built-in" controllers).
144144
Kubernetes lets you run a resilient control plane, so that if any of the built-in
145145
controllers were to fail, another part of the control plane will take over the work.
146146

content/en/docs/concepts/cluster-administration/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Before choosing a guide, here are some considerations:
3939

4040
## Managing a cluster
4141

42-
* [Managing a cluster](/docs/tasks/administer-cluster/cluster-management/) describes several topics related to the lifecycle of a cluster: creating a new cluster, upgrading your clusters master and worker nodes, performing node maintenance (e.g. kernel upgrades), and upgrading the Kubernetes API version of a running cluster.
42+
* [Managing a cluster](/docs/tasks/administer-cluster/cluster-management/) describes several topics related to the lifecycle of a cluster: creating a new cluster, upgrading your cluster's master and worker nodes, performing node maintenance (e.g. kernel upgrades), and upgrading the Kubernetes API version of a running cluster.
4343

4444
* Learn how to [manage nodes](/docs/concepts/architecture/nodes/).
4545

content/en/docs/concepts/configuration/pod-priority-preemption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ The only component that considers both QoS and Pod priority is
359359
[kubelet out-of-resource eviction](/docs/tasks/administer-cluster/out-of-resource/).
360360
The kubelet ranks Pods for eviction first by whether or not their usage of the
361361
starved resource exceeds requests, then by Priority, and then by the consumption
362-
of the starved compute resource relative to the Pods scheduling requests.
362+
of the starved compute resource relative to the Pods' scheduling requests.
363363
See
364364
[evicting end-user pods](/docs/tasks/administer-cluster/out-of-resource/#evicting-end-user-pods)
365365
for more details.

content/en/docs/concepts/configuration/secret.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ Create the Secret:
914914
kubectl apply -f mysecret.yaml
915915
```
916916

917-
Use `envFrom` to define all of the Secrets data as container environment variables. The key from the Secret becomes the environment variable name in the Pod.
917+
Use `envFrom` to define all of the Secret's data as container environment variables. The key from the Secret becomes the environment variable name in the Pod.
918918

919919
```yaml
920920
apiVersion: v1

content/en/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ list of devices it manages, and the kubelet is then in charge of advertising tho
4646
resources to the API server as part of the kubelet node status update.
4747
For example, after a device plugin registers `hardware-vendor.example/foo` with the kubelet
4848
and reports two healthy devices on a node, the node status is updated
49-
to advertise that the node has 2 Foo devices installed and available.
49+
to advertise that the node has 2 "Foo" devices installed and available.
5050

5151
Then, users can request devices in a
5252
[Container](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#container-v1-core)

content/en/docs/concepts/overview/what-is-kubernetes.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ That's how Kubernetes comes to the rescue! Kubernetes provides you with a framew
5959

6060
Kubernetes provides you with:
6161

62-
* **Service discovery and load balancing**
62+
* **Service discovery and load balancing**
6363
Kubernetes can expose a container using the DNS name or using their own IP address. If traffic to a container is high, Kubernetes is able to load balance and distribute the network traffic so that the deployment is stable.
64-
* **Storage orchestration**
64+
* **Storage orchestration**
6565
Kubernetes allows you to automatically mount a storage system of your choice, such as local storages, public cloud providers, and more.
66-
* **Automated rollouts and rollbacks**
66+
* **Automated rollouts and rollbacks**
6767
You can describe the desired state for your deployed containers using Kubernetes, and it can change the actual state to the desired state at a controlled rate. For example, you can automate Kubernetes to create new containers for your deployment, remove existing containers and adopt all their resources to the new container.
68-
* **Automatic bin packing**
68+
* **Automatic bin packing**
6969
You provide Kubernetes with a cluster of nodes that it can use to run containerized tasks. You tell Kubernetes how much CPU and memory (RAM) each container needs. Kubernetes can fit containers onto your nodes to make the best use of your resources.
70-
* **Self-healing**
71-
Kubernetes restarts containers that fail, replaces containers, kills containers that dont respond to your user-defined health check, and doesnt advertise them to clients until they are ready to serve.
72-
* **Secret and configuration management**
70+
* **Self-healing**
71+
Kubernetes restarts containers that fail, replaces containers, kills containers that don't respond to your user-defined health check, and doesn't advertise them to clients until they are ready to serve.
72+
* **Secret and configuration management**
7373
Kubernetes lets you store and manage sensitive information, such as passwords, OAuth tokens, and SSH keys. You can deploy and update secrets and application configuration without rebuilding your container images, and without exposing secrets in your stack configuration.
7474

7575
## What Kubernetes is not
@@ -84,7 +84,7 @@ Kubernetes:
8484
* Does not dictate logging, monitoring, or alerting solutions. It provides some integrations as proof of concept, and mechanisms to collect and export metrics.
8585
* Does not provide nor mandate a configuration language/system (for example, Jsonnet). It provides a declarative API that may be targeted by arbitrary forms of declarative specifications.
8686
* Does not provide nor adopt any comprehensive machine configuration, maintenance, management, or self-healing systems.
87-
* Additionally, Kubernetes is not a mere orchestration system. In fact, it eliminates the need for orchestration. The technical definition of orchestration is execution of a defined workflow: first do A, then B, then C. In contrast, Kubernetes comprises a set of independent, composable control processes that continuously drive the current state towards the provided desired state. It shouldnt matter how you get from A to C. Centralized control is also not required. This results in a system that is easier to use and more powerful, robust, resilient, and extensible.
87+
* Additionally, Kubernetes is not a mere orchestration system. In fact, it eliminates the need for orchestration. The technical definition of orchestration is execution of a defined workflow: first do A, then B, then C. In contrast, Kubernetes comprises a set of independent, composable control processes that continuously drive the current state towards the provided desired state. It shouldn't matter how you get from A to C. Centralized control is also not required. This results in a system that is easier to use and more powerful, robust, resilient, and extensible.
8888

8989

9090

content/en/docs/concepts/overview/working-with-objects/annotations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If the prefix is omitted, the annotation Key is presumed to be private to the us
6969

7070
The `kubernetes.io/` and `k8s.io/` prefixes are reserved for Kubernetes core components.
7171

72-
For example, heres the configuration file for a Pod that has the annotation `imageregistry: https://hub.docker.com/` :
72+
For example, here's the configuration file for a Pod that has the annotation `imageregistry: https://hub.docker.com/` :
7373

7474
```yaml
7575

@@ -85,7 +85,7 @@ spec:
8585
image: nginx:1.14.2
8686
ports:
8787
- containerPort: 80
88-
88+
8989
```
9090

9191

content/en/docs/concepts/overview/working-with-objects/labels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The `kubernetes.io/` and `k8s.io/` prefixes are reserved for Kubernetes core com
5454

5555
Valid label values must be 63 characters or less and must be empty or begin and end with an alphanumeric character (`[a-z0-9A-Z]`) with dashes (`-`), underscores (`_`), dots (`.`), and alphanumerics between.
5656

57-
For example, heres the configuration file for a Pod that has two labels `environment: production` and `app: nginx` :
57+
For example, here's the configuration file for a Pod that has two labels `environment: production` and `app: nginx` :
5858

5959
```yaml
6060

content/en/docs/concepts/overview/working-with-objects/names.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Some resource types require their names to be able to be safely encoded as a
5454
path segment. In other words, the name may not be "." or ".." and the name may
5555
not contain "/" or "%".
5656

57-
Heres an example manifest for a Pod named `nginx-demo`.
57+
Here's an example manifest for a Pod named `nginx-demo`.
5858

5959
```yaml
6060
apiVersion: v1

content/en/docs/concepts/scheduling-eviction/taint-and-toleration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ tolerations:
6262
effect: "NoSchedule"
6363
```
6464
65-
Heres an example of a pod that uses tolerations:
65+
Here's an example of a pod that uses tolerations:
6666
6767
{{< codenew file="pods/pod-with-toleration.yaml" >}}
6868

0 commit comments

Comments
 (0)