Skip to content

Commit

Permalink
Minor Type (kubernetes#12545)
Browse files Browse the repository at this point in the history
The frontend service should show type of "LoadBalancer"
  • Loading branch information
brendanwr authored and Mayank Kumar committed Mar 11, 2019
1 parent 3d6eab6 commit 2567705
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,16 +169,16 @@ This displays the configuration for the `frontend` Service and watches for
changes. Initially, the external IP is listed as `<pending>`:

```
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
frontend ClusterIP 10.51.252.116 <pending> 80/TCP 10s
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
frontend LoadBalancer 10.51.252.116 <pending> 80/TCP 10s
```

As soon as an external IP is provisioned, however, the configuration updates
to include the new IP under the `EXTERNAL-IP` heading:

```
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
frontend ClusterIP 10.51.252.116 XXX.XXX.XXX.XXX 80/TCP 1m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
frontend LoadBalancer 10.51.252.116 XXX.XXX.XXX.XXX 80/TCP 1m
```

That IP can now be used to interact with the `frontend` service from outside the
Expand Down

0 comments on commit 2567705

Please sign in to comment.