Skip to content

Commit 8c8a155

Browse files
authored
Merge pull request #6348 from oke-py/doc-lb
fix grammer and remove extra spaces
2 parents 13d55c3 + 16ed175 commit 8c8a155

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

site/content/en/docs/Tasks/loadbalancer.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >
99

1010
## Overview
1111

12-
A LoadBalancer service is the standard way to expose a service to the internet. With this method, each service gets it's own IP address.
12+
A LoadBalancer service is the standard way to expose a service to the internet. With this method, each service gets its own IP address.
1313

1414

1515
## Using `minikube tunnel`
@@ -53,25 +53,25 @@ Status:
5353

5454
#### Create a kubernetes deployment
5555
```
56-
kubectl create deployment hello-minikube1 --image=k8s.gcr.io/echoserver:1.4
56+
kubectl create deployment hello-minikube1 --image=k8s.gcr.io/echoserver:1.4
5757
```
5858
#### Create a kubernetes service type LoadBalancer
5959
```
60-
kubectl expose deployment hello-minikube1 --type=LoadBalancer --port=8080
60+
kubectl expose deployment hello-minikube1 --type=LoadBalancer --port=8080
6161
```
6262

6363
### Check external IP
6464
```
6565
kubectl get svc
6666
```
6767
<pre>
68-
$ kc get svc
69-
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
68+
$ kc get svc
69+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
7070
hello-minikube1 LoadBalancer 10.96.184.178 10.96.184.178 8080:30791/TCP 40s
7171
</pre>
7272

7373

74-
note that without minikube tunnel, it would kubernetes would be showing external IP as "pending".
74+
note that without minikube tunnel, kubernetes would be showing external IP as "pending".
7575

7676
### Try in your browser
7777
open in your browser (make sure there is no proxy set)
@@ -80,7 +80,7 @@ http://REPLACE_WITH_EXTERNAL_IP:8080
8080
```
8181

8282

83-
Each service will get it's own external ip.
83+
Each service will get its own external ip.
8484

8585
----
8686
### DNS resolution (experimental)

0 commit comments

Comments
 (0)