Skip to content

Commit e539972

Browse files
committed
Fix grammer issue
1 parent 2b16bfd commit e539972

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

site/content/en/docs/handbook/accessing.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ minikube service <service-name> --url
3030

3131
### Using `minikube service` with tunnel
3232

33-
The network is limited if you are using a Docker driver on darwin, Windows or WSL, and the Node IP is not reachable directly.
33+
The network is limited if using the Docker driver on Darwin, Windows, or WSL, and the Node IP is not reachable directly.
3434

35-
If minikube runs on Linux with Docker driver, no tunnel will be created.
35+
Running minikube on Linux with the Docker driver will result in no tunnel being created.
3636

3737
Services of type `NodePort` can be exposed via the `minikube service <service-name> --url` command. It must be run in a separate terminal window to keep the [tunnel](https://en.wikipedia.org/wiki/Port_forwarding#Local_port_forwarding) open. Ctrl-C in the terminal can be used to terminate the process at which time the network routes will be cleaned up.
3838

3939
### Example of NodePort
4040

41-
1. Create a kubernetes deployment
41+
1. Create a Kubernetes deployment
4242

4343
```shell
4444
kubectl create deployment hello-minikube1 --image=k8s.gcr.io/echoserver:1.4
4545
```
4646

47-
2. Create a kubernetes service type NodePort
47+
2. Create a Kubernetes service type NodePort
4848

4949
```shell
5050
kubectl expose deployment hello-minikube1 --type=NodePort --port=8080
@@ -67,7 +67,7 @@ Services of type `NodePort` can be exposed via the `minikube service <service-na
6767
minikube service hello-minikube1 --url
6868
```
6969

70-
`minikube service hello-minikube1 --url` runs as a process, creating a [tunnel](https://en.wikipedia.org/wiki/Port_forwarding#Local_port_forwarding) to cluster. The command exposes the service directly to any program running on the host operating system.
70+
`minikube service hello-minikube1 --url` runs as a process, creating a [tunnel](https://en.wikipedia.org/wiki/Port_forwarding#Local_port_forwarding) to the cluster. The command exposes the service directly to any program running on the host operating system.
7171

7272
<details>
7373
<summary>
@@ -80,7 +80,7 @@ Services of type `NodePort` can be exposed via the `minikube service <service-na
8080
</pre>
8181
</details>
8282

83-
check ssh tunnel in another terminal
83+
Check ssh tunnel in another terminal
8484

8585
```shell
8686
$ ps -ef | grep [email protected]
@@ -89,7 +89,7 @@ Services of type `NodePort` can be exposed via the `minikube service <service-na
8989

9090
5. Try in your browser
9191

92-
open in your browser (make sure there is no proxy set)
92+
Open in your browser (ensure there is no proxy set)
9393

9494
```shell
9595
http://127.0.0.1:TUNNEL_PORT
@@ -127,9 +127,9 @@ Services of type `LoadBalancer` can be exposed via the `minikube tunnel` command
127127

128128
### Example of LoadBalancer
129129

130-
1. Run tunnel in a separate terminal
130+
1. Run the tunnel in a separate terminal
131131

132-
it will ask for password.
132+
It will ask for a password.
133133

134134
```shell
135135
minikube tunnel
@@ -159,19 +159,19 @@ Services of type `LoadBalancer` can be exposed via the `minikube tunnel` command
159159
</pre>
160160
</details>
161161
162-
2. Create a kubernetes deployment
162+
2. Create a Kubernetes deployment
163163
164164
```shell
165165
kubectl create deployment hello-minikube1 --image=k8s.gcr.io/echoserver:1.4
166166
```
167167
168-
3. Create a kubernetes service type LoadBalancer
168+
3. Create a Kubernetes service with type LoadBalancer
169169
170170
```shell
171171
kubectl expose deployment hello-minikube1 --type=LoadBalancer --port=8080
172172
```
173173
174-
4. Check external IP
174+
4. Check the external IP
175175
176176
```shell
177177
kubectl get svc
@@ -182,17 +182,17 @@ Services of type `LoadBalancer` can be exposed via the `minikube tunnel` command
182182
hello-minikube1 LoadBalancer 10.96.184.178 10.96.184.178 8080:30791/TCP 40s
183183
</pre>
184184
185-
note that without minikube tunnel, kubernetes would be showing external IP as "pending".
185+
Note that without minikube tunnel, Kubernetes will show the external IP as "pending".
186186
187187
5. Try in your browser
188188
189-
open in your browser (make sure there is no proxy set)
189+
Open in your browser (ensure there is no proxy set)
190190
191191
```shell
192192
http://REPLACE_WITH_EXTERNAL_IP:8080
193193
```
194194
195-
Each service will get its own external ip.
195+
Each service will get its own external IP.
196196
197197
----
198198

0 commit comments

Comments
 (0)