Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

site: fix wrong port numbers #15020

Merged
merged 1 commit into from
Sep 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/content/en/docs/start/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ minikube dashboard

<h2 class="step"><span class="fa-stack fa-1x"><i class="fa fa-circle fa-stack-2x"></i><strong class="fa-stack-1x text-primary">4</strong></span>Deploy applications</h2>

Create a sample deployment and expose it on port 8080:
Create a sample deployment and expose it on port 80:

```shell
kubectl create deployment hello-minikube --image=docker.io/nginx:1.23
Expand All @@ -556,7 +556,7 @@ minikube service hello-minikube
Alternatively, use kubectl to forward the port:

```shell
kubectl port-forward service/hello-minikube 7080:8080
kubectl port-forward service/hello-minikube 7080:80
```

Tada! Your application is now available at [http://localhost:7080/](http://localhost:7080/).
Expand Down Expand Up @@ -584,7 +584,7 @@ To find the routable IP, run this command and examine the `EXTERNAL-IP` column:
kubectl get services balanced
```

Your deployment is now available at &lt;EXTERNAL-IP&gt;:8080
Your deployment is now available at &lt;EXTERNAL-IP&gt;:80

<h2 class="step"><span class="fa-stack fa-1x"><i class="fa fa-circle fa-stack-2x"></i><strong class="fa-stack-1x text-primary">5</strong></span>Manage your cluster</h2>

Expand Down