Skip to content

Commit c9043d3

Browse files
authored
Merge pull request kubernetes#1164 from pigmej/englishify_getting_started
Fixed few typos and englishify getting-started-guides
2 parents c3d4232 + bbb9854 commit c9043d3

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

docs/getting-started-guides/azure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export AZURE_SUBSCRIPTION_ID="<subscription-guid>"
4343
export AZURE_TENANT_ID="<tenant-guid>" # only needed for Kubernetes < v1.3.0.
4444
```
4545

46-
These values can be overriden by setting them in `cluster/azure/config-default.sh` or as environment variables. They are shown here with their default values:
46+
These values can be overridden by setting them in `cluster/azure/config-default.sh` or as environment variables. They are shown here with their default values:
4747

4848
```shell
4949
export AZURE_DEPLOY_ID="" # autogenerated if blank

docs/getting-started-guides/clc.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,9 @@ kubectl cluster-info
251251

252252
### Accessing the cluster programmatically
253253

254-
It's possible to use the locally-stored client certificates to access the api server. For example, you may want to use any of the [Kubernetes API client libraries](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/client-libraries.md) to program against your Kubernetes cluster in the programming language of your choice.
254+
It's possible to use the locally stored client certificates to access the api server. For example, you may want to use any of the [Kubernetes API client libraries](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/client-libraries.md) to program against your Kubernetes cluster in the programming language of your choice.
255255

256-
To demostrate how to use these locally stored certificates, we provide the folowing example of using ```curl``` to communicate to the master api server via https:
256+
To demonstrate how to use these locally stored certificates, we provide the following example of using ```curl``` to communicate to the master api server via https:
257257

258258
```shell
259259
curl \
@@ -267,7 +267,7 @@ distributed with OSX.
267267

268268
### Accessing the cluster with a browser
269269

270-
We install two UIs on Kubernetes. The orginal KubeUI and [the newer kube
270+
We install two UIs on Kubernetes. The original KubeUI and [the newer kube
271271
dashboard](/docs/user-guide/ui/). When you create a cluster, the script should output URLs for these
272272
interfaces like this:
273273

docs/getting-started-guides/coreos/bare_metal_calico.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Download the stable CoreOS bootable ISO from the [CoreOS website](https://coreos
3939

4040
1. Once you've downloaded the ISO image, burn the ISO to a CD/DVD/USB key and boot from it (if using a virtual machine you can boot directly from the ISO). Once booted, you should be automatically logged in as the `core` user at the terminal. At this point CoreOS is running from the ISO and it hasn't been installed yet.
4141

42-
2. *On another machine*, download the the [master cloud-config template](https://raw.githubusercontent.com/projectcalico/calico-cni/k8s-1.1-docs/samples/kubernetes/cloud-config/master-config-template.yaml) and save it as `master-config.yaml`.
42+
2. *On another machine*, download the [master cloud-config template](https://raw.githubusercontent.com/projectcalico/calico-cni/k8s-1.1-docs/samples/kubernetes/cloud-config/master-config-template.yaml) and save it as `master-config.yaml`.
4343

4444
3. Replace the following variables in the `master-config.yaml` file.
4545

docs/getting-started-guides/coreos/bare_metal_offline.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Deploy a CoreOS running Kubernetes environment. This particular guide is made to
2323
* /tftpboot/pxelinux.0/(MAC) -> linked to Linux image config file
2424
2. Update per install the link for pxelinux
2525
3. Update the DHCP config to reflect the host needing deployment
26-
4. Setup nodes to deploy CoreOS creating a etcd cluster.
26+
4. Setup nodes to deploy CoreOS creating an etcd cluster.
2727
5. Have no access to the public [etcd discovery tool](https://discovery.etcd.io/).
2828
6. Installing the CoreOS slaves to become Kubernetes nodes.
2929

@@ -98,7 +98,7 @@ Now you should have a working PXELINUX setup to image CoreOS nodes. You can veri
9898

9999
This section describes how to setup the CoreOS images to live alongside a pre-existing PXELINUX environment.
100100

101-
1. Find or create the TFTP root directory that everything will be based off of.
101+
1. Find or create the TFTP root directory that everything will be based on.
102102
* For this document we will assume `/tftpboot/` is our root directory.
103103
2. Once we know and have our tftp root directory we will create a new directory structure for our CoreOS images.
104104
3. Download the CoreOS PXE files provided by the CoreOS team.

docs/getting-started-guides/logging-elasticsearch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ asks you to configure your view of the ingested logs. Select the option for
9393
timeseries values and select `@timestamp`. On the following page select the
9494
`Discover` tab and then you should be able to see the ingested logs.
9595
You can set the refresh interval to 5 seconds to have the logs
96-
regulary refreshed.
96+
regularly refreshed.
9797

9898
Here is a typical view of ingested logs from the Kibana viewer:
9999

docs/getting-started-guides/meanstack.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ RUN npm install
6464
CMD ["node", "app.js"]
6565
```
6666

67-
A `Dockerfile` is pretty self explanatory, and this one is dead simple.
67+
A `Dockerfile` is pretty self-explanatory, and this one is dead simple.
6868

6969
First, it uses the official Node.js LTS image as the base image.
7070

docs/getting-started-guides/openstack-heat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ If you do not have your environment variables set, or do not want them consumed,
8686
- **[config-default.sh](http://releases.k8s.io/{{page.githubbranch}}/cluster/openstack-heat/config-default.sh)** Sets all parameters needed for heat template.
8787
- **[config-image.sh](http://releases.k8s.io/{{page.githubbranch}}/cluster/openstack-heat/config-image.sh)** Sets parameters needed to download and create new OpenStack image via glance.
8888
- **[openrc-default.sh](http://releases.k8s.io/{{page.githubbranch}}/cluster/openstack-heat/openrc-default.sh)** Sets environment variables for communicating to OpenStack. These are consumed by the cli tools (heat, glance, swift, nova).
89-
- **[openrc-swift.sh](http://releases.k8s.io/{{page.githubbranch}}/cluster/openstack-heat/openrc-swift.sh)** Some OpenStack setups require the use of seperate swift credentials. Put those credentials in this file.
89+
- **[openrc-swift.sh](http://releases.k8s.io/{{page.githubbranch}}/cluster/openstack-heat/openrc-swift.sh)** Some OpenStack setups require the use of separate swift credentials. Put those credentials in this file.
9090

9191
Please see the contents of these files for documentation regarding each variable's function.
9292

docs/getting-started-guides/ubuntu.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $ export ETCD_VERSION=2.2.0
5959
For users who want to bring up a cluster with k8s version v1.1.1, `controller manager` may fail to start
6060
due to [a known issue](https://github.com/kubernetes/kubernetes/issues/17109). You could raise it
6161
up manually by using following command on the remote master server. Note that
62-
you should do this only after `api-server` is up. Moreover this issue is fixed in v1.1.2 and later.
62+
you should do this only after `api-server` is up. Moreover, this issue is fixed in v1.1.2 and later.
6363

6464
```shell
6565
$ sudo service kube-controller-manager start

0 commit comments

Comments
 (0)