Minor updates (#11021)
- Added a missing full stop. - Separated the details on the --type flag under the respective section. - Linked to the page on setting up Minikube locally. - Introduced the VM abbreviation when used for the first time on the page.
This commit is contained in:
@@ -17,7 +17,7 @@ on Kubernetes using [Minikube](/docs/getting-started-guides/minikube) and Kataco
|
|||||||
Katacoda provides a free, in-browser Kubernetes environment.
|
Katacoda provides a free, in-browser Kubernetes environment.
|
||||||
|
|
||||||
{{< note >}}
|
{{< note >}}
|
||||||
You can also follow this tutorial if you've installed Minikube locally.
|
You can also follow this tutorial if you've installed [Minikube locally](/docs/tasks/tools/install-minikube/).
|
||||||
{{< /note >}}
|
{{< /note >}}
|
||||||
|
|
||||||
{{% /capture %}}
|
{{% /capture %}}
|
||||||
@@ -38,7 +38,7 @@ This tutorial provides a container image built from the following files:
|
|||||||
|
|
||||||
{{< codenew language="conf" file="minikube/Dockerfile" >}}
|
{{< codenew language="conf" file="minikube/Dockerfile" >}}
|
||||||
|
|
||||||
For more information, read the Docker documentation for [docker build](https://docs.docker.com/engine/reference/commandline/build/)
|
For more information on the `docker build` command, read the [Docker documentation](https://docs.docker.com/engine/reference/commandline/build/).
|
||||||
|
|
||||||
{{% /capture %}}
|
{{% /capture %}}
|
||||||
|
|
||||||
@@ -129,6 +129,9 @@ Kubernetes [*Service*](/docs/concepts/services-networking/service/).
|
|||||||
```shell
|
```shell
|
||||||
kubectl expose deployment hello-node --type=LoadBalancer
|
kubectl expose deployment hello-node --type=LoadBalancer
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The `--type=LoadBalancer` flag indicates that you want to expose your Service
|
||||||
|
outside of the cluster.
|
||||||
|
|
||||||
2. View the Service you just created:
|
2. View the Service you just created:
|
||||||
|
|
||||||
@@ -144,8 +147,7 @@ Kubernetes [*Service*](/docs/concepts/services-networking/service/).
|
|||||||
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 23m
|
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 23m
|
||||||
```
|
```
|
||||||
|
|
||||||
The `--type=LoadBalancer` flag indicates that you want to expose your Service
|
On cloud providers that support load balancers,
|
||||||
outside of the cluster. On cloud providers that support load balancers,
|
|
||||||
an external IP address would be provisioned to access the Service. On Minikube,
|
an external IP address would be provisioned to access the Service. On Minikube,
|
||||||
the `LoadBalancer` type makes the Service accessible through the `minikube service`
|
the `LoadBalancer` type makes the Service accessible through the `minikube service`
|
||||||
command.
|
command.
|
||||||
@@ -250,7 +252,7 @@ kubectl delete service hello-node
|
|||||||
kubectl delete deployment hello-node
|
kubectl delete deployment hello-node
|
||||||
```
|
```
|
||||||
|
|
||||||
Optionally, stop the Minikube VM:
|
Optionally, stop the Minikube virtual machine (VM):
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
minikube stop
|
minikube stop
|
||||||
|
|||||||
Reference in New Issue
Block a user